搜索Gradle插件

版本 1.1.0-rc.2 (最新)

1.1.0-rc.2

创建于2016年8月30日。

从git引用推断版本

使用插件DSL

plugins {
  id("xyz.errorist.versioneer") version "1.1.0-rc.2"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.xyz.errorist:versioneer:1.1.0-rc.2")
  }
}

apply(plugin = "xyz.errorist.versioneer")

使用插件DSL

plugins {
  id "xyz.errorist.versioneer" version "1.1.0-rc.2"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.xyz.errorist:versioneer:1.1.0-rc.2"
  }
}

apply plugin: "xyz.errorist.versioneer"

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