This commit switches to using Java 24 as the mai JVM in the GitHub action and also configures the foojay resolver for Java toolchain resolution by Gradle. See gh-1206
26 lines
586 B
Groovy
26 lines
586 B
Groovy
pluginManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
resolutionStrategy {
|
|
eachPlugin {
|
|
if (requested.id.id == 'org.springframework.boot') {
|
|
useModule("org.springframework.boot:spring-boot-gradle-plugin:${requested.version}")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id "org.gradle.toolchains.foojay-resolver-convention" version "1.0.0"
|
|
id "io.spring.develocity.conventions" version "0.0.22"
|
|
}
|
|
|
|
rootProject.name = 'spring-graphql'
|
|
include 'platform',
|
|
'spring-graphql',
|
|
'spring-graphql-test',
|
|
'spring-graphql-docs'
|
|
|