搜索 Gradle 插件

版本 1.14.0 (最新版本)

1.14.0

创建时间 2020年12月21日。

git flow 中递增版本号的插件

使用 plugins DSL

plugins {
  id("com.etherealscope.gradlegitflowversionplugin") version "1.14.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.etherealscope:gradle-git-flow-version-plugin:1.14.0")
  }
}

apply(plugin = "com.etherealscope.gradlegitflowversionplugin")

使用 plugins DSL

plugins {
  id "com.etherealscope.gradlegitflowversionplugin" version "1.14.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.etherealscope:gradle-git-flow-version-plugin:1.14.0"
  }
}

apply plugin: "com.etherealscope.gradlegitflowversionplugin"

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