chore: update repository setup for gradle 8.0.2+ [see](https://kotlinlang.org/docs/gradle-configure-project.html#gradle-java-toolchains-support)
Some checks failed
Generate embeddings / cache-and-install (20.19.0) (push) Has been cancelled
publish / stable - armv7-unknown-linux-gnueabihf - node@22.16.0 (push) Has been cancelled
publish / stable - aarch64-unknown-linux-musl - node@22.16.0 (push) Has been cancelled
publish / stable - x86_64-unknown-linux-musl - node@22.16.0 (push) Has been cancelled
publish / Resolve Required Data (push) Has been cancelled
publish / stable - aarch64-pc-windows-msvc - node@22.16.0 (push) Has been cancelled
publish / stable - x86_64-apple-darwin - node@22.16.0 (push) Has been cancelled
publish / stable - x86_64-pc-windows-msvc - node@22.16.0 (push) Has been cancelled
publish / stable - aarch64-unknown-linux-gnu - node@22.16.0 (push) Has been cancelled
publish / stable - x86_64-unknown-linux-gnu - node@22.16.0 (push) Has been cancelled
publish / stable - aarch64-apple-darwin - node@22.16.0 (push) Has been cancelled
publish / Build FreeBSD (push) Has been cancelled
publish / Publish (push) Has been cancelled
publish / (PR Release Failure Only) Create comment for failed PR release (push) Has been cancelled
Issue Statistics / Report status (push) Has been cancelled

This commit is contained in:
Miel Truyen 2025-06-23 23:31:21 +02:00
parent a74bbaf32c
commit 99dff4fe5c
3 changed files with 9 additions and 5 deletions

View File

@ -13,5 +13,7 @@ pluginManagement {
gradlePluginPortal() gradlePluginPortal()
} }
} }
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version("0.9.0")
}
rootProject.name = "batch-runner" rootProject.name = "batch-runner"

View File

@ -12,5 +12,7 @@ pluginManagement {
gradlePluginPortal() gradlePluginPortal()
} }
} }
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version("0.9.0")
}
rootProject.name = "project-graph" rootProject.name = "project-graph"

View File

@ -4,8 +4,6 @@
* The settings file is used to specify which projects to include in your build. * 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. * 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 { pluginManagement {
repositories { repositories {
mavenLocal() mavenLocal()
@ -13,7 +11,9 @@ pluginManagement {
gradlePluginPortal() gradlePluginPortal()
} }
} }
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version("0.9.0")
}
rootProject.name = "nx" rootProject.name = "nx"
includeBuild("./packages/gradle/project-graph") includeBuild("./packages/gradle/project-graph")
includeBuild("./packages/gradle/batch-runner") includeBuild("./packages/gradle/batch-runner")