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