搜索 Gradle 插件

版本 1.0.1(最新)

1.0.1

创建于 2017 年 7 月 20 日。

一个将包括分支限定符的语义版本设置为 project.version 的插件

使用 plugins DSL

plugins {
  id("tane.mahuta.gradle.semver-branch-plugin") version "1.0.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.tane.mahuta.build:gradle-plugin-version:1.0.1")
  }
}

apply(plugin = "tane.mahuta.gradle.semver-branch-plugin")

使用 plugins DSL

plugins {
  id "tane.mahuta.gradle.semver-branch-plugin" version "1.0.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.tane.mahuta.build:gradle-plugin-version:1.0.1"
  }
}

apply plugin: "tane.mahuta.gradle.semver-branch-plugin"

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