Files
unmeta-gradle-plugin/settings.gradle.kts
2023-04-29 12:03:49 +08:00

34 lines
648 B
Plaintext

pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
google()
}
}
dependencyResolutionManagement {
repositories {
mavenCentral()
google()
}
}
plugins {
`gradle-enterprise`
id("com.android.application") version "7.3.0" apply false
}
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
publishAlwaysIf(System.getenv("GITHUB_ACTIONS") == "true")
publishOnFailure()
}
}
rootProject.name = "unmeta-gradle-plugin"
include(":example")
includeBuild("plugin-build")