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