搜索Gradle插件

版本 0.2(最新版本)

0.2

创建于2016年11月10日。

Gradle Git版本插件。

使用插件DSL

plugins {
  id("com.github.ngyewch.git-version") version "0.2"
}

使用旧插件应用

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

apply(plugin = "com.github.ngyewch.git-version")

使用插件DSL

plugins {
  id "com.github.ngyewch.git-version" version "0.2"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.ngyewch:gradle-git-version:0.2"
  }
}

apply plugin: "com.github.ngyewch.git-version"

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