搜索Gradle插件

com.github.nwillc.buildinfo

所有者: N Christopher

Gradle插件可以通过生成包含Java构建信息的JSON文件。

https://github.com/nwillc/buildInfo

来源: https://github.com/nwillc/buildInfo

版本 0.1.4 (最新)

0.1.4

创建时间:2017年10月29日。

Gradle插件可以通过生成包含Java构建信息的JSON文件。

使用插件DSL

plugins {
  id("com.github.nwillc.buildinfo") version "0.1.4"
}

使用经典插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.nwillc:buildinfo:0.1.4")
  }
}

apply(plugin = "com.github.nwillc.buildinfo")

使用插件DSL

plugins {
  id "com.github.nwillc.buildinfo" version "0.1.4"
}

使用经典插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.nwillc:buildinfo:0.1.4"
  }
}

apply plugin: "com.github.nwillc.buildinfo"

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