Files
unmeta-gradle-plugin/settings.gradle.kts
2023-04-28 14:48:03 +08:00

32 lines
578 B
Plaintext

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")