net.h34t.buildinfo
所有者:Stefan Schallerl
生成有关构建信息的一个插件。
https://codeberg.org/h34tnet/buildinfo
源代码:https://codeberg.org/h34tnet/buildinfo.git
版本 1.0.0 (最新版)
1.0.0
创建于 2023年12月16日。
生成有关构建信息的一个插件。
使用 plugins DSL
plugins {
id("net.h34t.buildinfo") version "1.0.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("net.h34t:buildinfo:1.0.0")
}
}
apply(plugin = "net.h34t.buildinfo")
使用 plugins DSL
plugins {
id "net.h34t.buildinfo" version "1.0.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "net.h34t:buildinfo:1.0.0"
}
}
apply plugin: "net.h34t.buildinfo"