io.github.gregoranders.project-configuration
所有者: Gregor Anders
遵循约定优于配置的原则,此 Gradle 插件为 Gradle JVM 项目中的各种插件提供默认配置,因此您不需要在项目各处复制模板代码。
https://github.com/gregoranders/gradle-project-configuration
来源: https://github.com/gregoranders/gradle-project-configuration
版本 0.0.9 (最新版本)
0.0.9
创建日期:2023年6月4日。
遵循约定优于配置的原则,此 Gradle 插件为 Gradle JVM 项目中的各种插件提供默认配置,因此您不需要在项目各处复制模板代码。
使用 插件 DSL
plugins {
id("io.github.gregoranders.project-configuration") version "0.0.9"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.gregoranders:project-configuration:0.0.9")
}
}
apply(plugin = "io.github.gregoranders.project-configuration")
使用 插件 DSL
plugins {
id "io.github.gregoranders.project-configuration" version "0.0.9"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.gregoranders:project-configuration:0.0.9"
}
}
apply plugin: "io.github.gregoranders.project-configuration"