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