搜索Gradle插件

版本 3.1.8-dev09-56b79bf (最新版)

3.1.8-dev09-56b79bf

创建于 2024年6月12日。

一个强制进行语义版本控制的Gradle插件,并依赖于git来检测项目状态

使用 插件 DSL

plugins {
  id("org.danilopianini.git-sensitive-semantic-versioning") version "3.1.8-dev09-56b79bf"
}

使用 旧式插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.danilopianini:git-sensitive-semantic-versioning-gradle-plugin:3.1.8-dev09-56b79bf")
  }
}

apply(plugin = "org.danilopianini.git-sensitive-semantic-versioning")

使用 插件 DSL

plugins {
  id "org.danilopianini.git-sensitive-semantic-versioning" version "3.1.8-dev09-56b79bf"
}

使用 旧式插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.danilopianini:git-sensitive-semantic-versioning-gradle-plugin:3.1.8-dev09-56b79bf"
  }
}

apply plugin: "org.danilopianini.git-sensitive-semantic-versioning"

了解如何将插件应用到子项目中