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() } } include(":unmeta")