diff --git a/packages/gradle/batch-runner/settings.gradle.kts b/packages/gradle/batch-runner/settings.gradle.kts index d0639301fd..49dcba3bc5 100644 --- a/packages/gradle/batch-runner/settings.gradle.kts +++ b/packages/gradle/batch-runner/settings.gradle.kts @@ -13,5 +13,7 @@ pluginManagement { gradlePluginPortal() } } - +plugins { + id("org.gradle.toolchains.foojay-resolver-convention") version("0.9.0") +} rootProject.name = "batch-runner" diff --git a/packages/gradle/project-graph/settings.gradle.kts b/packages/gradle/project-graph/settings.gradle.kts index d264f3bb97..ea39ecd464 100644 --- a/packages/gradle/project-graph/settings.gradle.kts +++ b/packages/gradle/project-graph/settings.gradle.kts @@ -12,5 +12,7 @@ pluginManagement { gradlePluginPortal() } } - +plugins { + id("org.gradle.toolchains.foojay-resolver-convention") version("0.9.0") +} rootProject.name = "project-graph" diff --git a/settings.gradle.kts b/settings.gradle.kts index 6491576060..9bf014a486 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -4,8 +4,6 @@ * The settings file is used to specify which projects to include in your build. * For more detailed information on multi-project builds, please refer to https://docs.gradle.org/8.5/userguide/building_swift_projects.html in the Gradle documentation. */ - - pluginManagement { repositories { mavenLocal() @@ -13,7 +11,9 @@ pluginManagement { gradlePluginPortal() } } - +plugins { + id("org.gradle.toolchains.foojay-resolver-convention") version("0.9.0") +} rootProject.name = "nx" includeBuild("./packages/gradle/project-graph") includeBuild("./packages/gradle/batch-runner")