搜索Gradle插件

版本 1.0.3(最新版)

1.0.3

创建于2021年9月22日。

一个Gradle插件,允许在CI/CD过程中自动提升补丁版本。

使用插件块DSL

plugins {
  id("com.github.virtualcitysystems.semver") version "1.0.3"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.virtualcitysystems:gradle-plugin-semver:1.0.3")
  }
}

apply(plugin = "com.github.virtualcitysystems.semver")

使用插件块DSL

plugins {
  id "com.github.virtualcitysystems.semver" version "1.0.3"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.virtualcitysystems:gradle-plugin-semver:1.0.3"
  }
}

apply plugin: "com.github.virtualcitysystems.semver"

学习如何将插件应用到子项目中