diff --git a/pom.xml b/pom.xml index a6759b1bc..39d2101d5 100644 --- a/pom.xml +++ b/pom.xml @@ -26,7 +26,7 @@ 3.2.0 1.2.0 2.3.0 - 2.7.9 + 3.0.0.beta2 2.1.3 3.0.4 diff --git a/tools/gradle-plugin/build.gradle b/tools/gradle-plugin/build.gradle index 89c8d195f..ea30eb13a 100644 --- a/tools/gradle-plugin/build.gradle +++ b/tools/gradle-plugin/build.gradle @@ -28,17 +28,18 @@ repositories { dependencies { api gradleApi() - implementation "io.smallrye:jandex:3.0.0" - implementation "io.smallrye:smallrye-graphql:${version}" - implementation "io.smallrye:smallrye-graphql-schema-builder:${version}" - implementation "jakarta.json.bind:jakarta.json.bind-api:2.0.0" - implementation "jakarta.validation:jakarta.validation-api:3.0.2" - implementation "org.eclipse:yasson:2.0.4" - implementation "org.jboss.logging:jboss-logging:3.6.1.Final" + implementation enforcedPlatform("io.smallrye:smallrye-graphql-parent:${version}") + implementation "io.smallrye:jandex" + implementation "io.smallrye:smallrye-graphql" + implementation "io.smallrye:smallrye-graphql-schema-builder" + implementation "jakarta.json.bind:jakarta.json.bind-api" + implementation "jakarta.validation:jakarta.validation-api" + implementation "org.eclipse:yasson" + implementation "org.jboss.logging:jboss-logging" testImplementation gradleTestKit() - testImplementation 'org.junit.jupiter:junit-jupiter:5.14.0' - testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.14.0' + testImplementation 'org.junit.jupiter:junit-jupiter' + testRuntimeOnly 'org.junit.platform:junit-platform-launcher' } test { diff --git a/tools/gradle-plugin/settings.gradle b/tools/gradle-plugin/settings.gradle index 390344ef7..eb400e96e 100644 --- a/tools/gradle-plugin/settings.gradle +++ b/tools/gradle-plugin/settings.gradle @@ -1,14 +1,14 @@ plugins { - id "com.gradle.enterprise" version "3.19.2" + id "com.gradle.develocity" version "4.4.2" } -gradleEnterprise { +develocity { buildScan { // plugin configuration - //See also: https://docs.gradle.com/enterprise/gradle-plugin/ - termsOfServiceUrl = 'https://gradle.com/terms-of-service'; - termsOfServiceAgree = 'yes' - publishOnFailure() + //See also: https://docs.gradle.com/develocity/gradle/4.4/gradle-plugin/ + termsOfUseUrl = 'https://gradle.com/legal/gradle-technologies-terms-of-use/' + termsOfUseAgree = 'yes' + publishing.onlyIf { !it.buildResult.failures.empty } } }