mirror of
https://github.com/fankes/unmeta-gradle-plugin.git
synced 2025-09-04 01:55:16 +08:00
Initial commit
This commit is contained in:
31
settings.gradle.kts
Normal file
31
settings.gradle.kts
Normal file
@@ -0,0 +1,31 @@
|
||||
pluginManagement {
|
||||
repositories {
|
||||
gradlePluginPortal()
|
||||
mavenCentral()
|
||||
}
|
||||
}
|
||||
|
||||
dependencyResolutionManagement {
|
||||
repositories {
|
||||
mavenCentral()
|
||||
google()
|
||||
}
|
||||
}
|
||||
|
||||
plugins {
|
||||
`gradle-enterprise`
|
||||
}
|
||||
|
||||
gradleEnterprise {
|
||||
buildScan {
|
||||
termsOfServiceUrl = "https://gradle.com/terms-of-service"
|
||||
termsOfServiceAgree = "yes"
|
||||
publishAlwaysIf(System.getenv("GITHUB_ACTIONS") == "true")
|
||||
publishOnFailure()
|
||||
}
|
||||
}
|
||||
|
||||
rootProject.name = "kotlin-gradle-plugin-template"
|
||||
|
||||
include(":example")
|
||||
includeBuild("plugin-build")
|
Reference in New Issue
Block a user