com.peterabeles.nativehelper
所有者: Peter Abeles
使用Git和Gradle自动生成版本类文件
https://github.com/lessthanoptimal/native-helper-plugin
来源:https://github.com/lessthanoptimal/native-helper-plugin
版本 1.0.0(最新版)
1.0.0
创建于2019年1月30日。
使用Git和Gradle自动生成版本类文件
使用插件DSL
plugins {
id("com.peterabeles.nativehelper") version "1.0.0"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.peterabeles.nativehelper:native-helper-plugin:1.0.0")
}
}
apply(plugin = "com.peterabeles.nativehelper")
使用插件DSL
plugins {
id "com.peterabeles.nativehelper" version "1.0.0"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.peterabeles.nativehelper:native-helper-plugin:1.0.0"
}
}
apply plugin: "com.peterabeles.nativehelper"