mirror of
https://github.com/fankes/unmeta-gradle-plugin.git
synced 2025-09-04 01:55:16 +08:00
34 lines
648 B
Plaintext
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")
|