From 9d5853dc1e68d61d05af49b5fa885013620dc4f0 Mon Sep 17 00:00:00 2001 From: Guillaume Le Floch Date: Mon, 10 May 2021 09:38:32 +0200 Subject: [PATCH] Bump gradle version to 7.1.1 and enable Gradle EA JDK tests --- .github/workflows/ci-actions-incremental.yml | 2 +- .github/workflows/jdk-early-access-build.yml | 3 +-- build-parent/pom.xml | 2 +- .../java/io/quarkus/cli/CliProjectGradleTest.java | 2 -- .../gradle/gradle/wrapper/gradle-wrapper.properties | 2 +- devtools/project-core-extension-codestarts/pom.xml | 6 +++--- docs/src/main/asciidoc/gradle-tooling.adoc | 13 +++++++++++++ .../quarkus/tooling/gradle-wrapper/codestart.yml | 2 +- .../src/main/resources/fake-catalog.json | 2 +- independent-projects/tools/pom.xml | 2 +- .../codestarts/quarkus/QuarkusCodestartBuildIT.java | 1 - .../gradle/gradle/wrapper/gradle-wrapper.properties | 2 +- .../resources/additional-source-sets/build.gradle | 2 +- .../ext-a/deployment/build.gradle | 2 +- .../ext-a/runtime/build.gradle | 2 +- .../ext-b/deployment/build.gradle | 2 +- .../ext-b/runtime/build.gradle | 2 +- .../ext-c/deployment/build.gradle | 2 +- .../ext-c/runtime/build.gradle | 2 +- .../ext-d/deployment/build.gradle | 2 +- .../ext-d/runtime/build.gradle | 2 +- .../ext-e/deployment/build.gradle | 2 +- .../ext-e/runtime/build.gradle | 2 +- .../ext-f/deployment/build.gradle | 2 +- .../ext-f/runtime/build.gradle | 2 +- .../ext-g/deployment/build.gradle | 2 +- .../ext-g/runtime/build.gradle | 2 +- .../ext-h/deployment/build.gradle | 2 +- .../ext-h/runtime/build.gradle | 2 +- .../ext-i/deployment/build.gradle | 2 +- .../ext-i/runtime/build.gradle | 2 +- .../ext-j/deployment/build.gradle | 2 +- .../ext-j/runtime/build.gradle | 2 +- .../ext-k/deployment/build.gradle | 2 +- .../ext-k/runtime/build.gradle | 2 +- .../ext-l/deployment/build.gradle | 2 +- .../ext-l/runtime/build.gradle | 2 +- .../ext-m/deployment/build.gradle | 2 +- .../ext-m/runtime/build.gradle | 2 +- .../ext-n/deployment/build.gradle | 2 +- .../ext-n/runtime/build.gradle | 2 +- .../ext-o/deployment/build.gradle | 2 +- .../ext-o/runtime/build.gradle | 2 +- .../ext-p/deployment/build.gradle | 2 +- .../ext-p/runtime/build.gradle | 2 +- .../ext-r/deployment/build.gradle | 2 +- .../ext-r/runtime/build.gradle | 2 +- .../ext-s/deployment/build.gradle | 2 +- .../ext-s/runtime/build.gradle | 2 +- .../ext-t/deployment/build.gradle | 2 +- .../ext-t/runtime/build.gradle | 2 +- .../ext-u/deployment/build.gradle | 2 +- .../ext-u/runtime/build.gradle | 2 +- .../deployment/build.gradle | 2 +- .../runtime/build.gradle | 2 +- 55 files changed, 67 insertions(+), 58 deletions(-) diff --git a/.github/workflows/ci-actions-incremental.yml b/.github/workflows/ci-actions-incremental.yml index 130660b300b42a..375315315fe8bd 100644 --- a/.github/workflows/ci-actions-incremental.yml +++ b/.github/workflows/ci-actions-incremental.yml @@ -250,7 +250,7 @@ jobs: - { name: "16", java-version: 16, - maven_args: "$JVM_TEST_MAVEN_ARGS -pl '!devtools/gradle'", + maven_args: "$JVM_TEST_MAVEN_ARGS", maven_opts: "-Xmx2g -XX:MaxMetaspaceSize=1g", os-name: "ubuntu-latest" } diff --git a/.github/workflows/jdk-early-access-build.yml b/.github/workflows/jdk-early-access-build.yml index b8f43c50a9cff9..d5e183b31f0b24 100644 --- a/.github/workflows/jdk-early-access-build.yml +++ b/.github/workflows/jdk-early-access-build.yml @@ -70,9 +70,8 @@ jobs: - name: Build with Maven # -fae to try to gather as many failures as possible # (but not maven.test.failure.ignore because test report generation is buggy) - # Gradle bits are excluded due to https://github.com/gradle/gradle/issues/13481 run: | - ./mvnw $JVM_TEST_MAVEN_OPTS -Dtcks install -fae -pl '!devtools/gradle' -pl '!integration-tests/gradle' + ./mvnw $JVM_TEST_MAVEN_OPTS -Dtcks install -fae # Test reports disabled due to: https://github.com/ScaCap/action-surefire-report/issues/39 #- name: Publish Test Report # if: always() diff --git a/build-parent/pom.xml b/build-parent/pom.xml index d434c7cb8fc0ab..dae47dde3542df 100644 --- a/build-parent/pom.xml +++ b/build-parent/pom.xml @@ -59,7 +59,7 @@ 3.8.1 0.7.7 - 6.9 + 7.1.1 3.1 diff --git a/devtools/cli/src/test/java/io/quarkus/cli/CliProjectGradleTest.java b/devtools/cli/src/test/java/io/quarkus/cli/CliProjectGradleTest.java index bf3d481048a72b..afbc1536f52305 100644 --- a/devtools/cli/src/test/java/io/quarkus/cli/CliProjectGradleTest.java +++ b/devtools/cli/src/test/java/io/quarkus/cli/CliProjectGradleTest.java @@ -11,7 +11,6 @@ import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.BeforeEach; -import org.junit.jupiter.api.Tag; import org.junit.jupiter.api.Test; import io.quarkus.cli.build.ExecuteUtil; @@ -23,7 +22,6 @@ /** * Similar to CliProjectMavenTest .. */ -@Tag("failsOnJDK16") public class CliProjectGradleTest { static final Path testProjectRoot = Paths.get(System.getProperty("user.dir")).toAbsolutePath() .resolve("target/test-project/"); diff --git a/devtools/gradle/gradle/wrapper/gradle-wrapper.properties b/devtools/gradle/gradle/wrapper/gradle-wrapper.properties index 7665b0fa93ae75..af7be50b1015cb 100644 --- a/devtools/gradle/gradle/wrapper/gradle-wrapper.properties +++ b/devtools/gradle/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-all.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/devtools/project-core-extension-codestarts/pom.xml b/devtools/project-core-extension-codestarts/pom.xml index d5e1f30f4d2395..321d70df6d863a 100644 --- a/devtools/project-core-extension-codestarts/pom.xml +++ b/devtools/project-core-extension-codestarts/pom.xml @@ -44,10 +44,10 @@ -Xmx512m - wrapper + init + --type + basic --no-daemon - --gradle-version - ${gradle-wrapper.version} target/classes/gradle-wrapper true diff --git a/docs/src/main/asciidoc/gradle-tooling.adoc b/docs/src/main/asciidoc/gradle-tooling.adoc index 486d2611cb064e..ab3126423dde45 100644 --- a/docs/src/main/asciidoc/gradle-tooling.adoc +++ b/docs/src/main/asciidoc/gradle-tooling.adoc @@ -494,3 +494,16 @@ More information on this topic can be found on the link:cdi-reference#bean_disco == Building with `./gradlew build` Starting from 1.1.0.Final, `./gradlew build` will no longer build the native image. Add `-Dquarkus.package.type=native` build argument explicitly as explained above if needed. + +== Publishing your application + +In order to make sure the right dependency versions are being used by Gradle, the BOM is declared as an `enforcedPlatform` in your build file. +By default, the `maven-publish` plugin will prevent you from publishing your application due to this `enforcedPlatform`. +This validation can be skipped by adding the following configuration in your `build.gradle` file: + +[source,groovy] +---- +tasks.withType(GenerateModuleMetadata).configureEach { + suppressedValidationErrors.add('enforced-platform') +} +---- \ No newline at end of file diff --git a/independent-projects/tools/base-codestarts/src/main/resources/codestarts/quarkus/tooling/gradle-wrapper/codestart.yml b/independent-projects/tools/base-codestarts/src/main/resources/codestarts/quarkus/tooling/gradle-wrapper/codestart.yml index 920af7390c5232..b90a3d00ace2fb 100644 --- a/independent-projects/tools/base-codestarts/src/main/resources/codestarts/quarkus/tooling/gradle-wrapper/codestart.yml +++ b/independent-projects/tools/base-codestarts/src/main/resources/codestarts/quarkus/tooling/gradle-wrapper/codestart.yml @@ -7,7 +7,7 @@ language: base: data: gradle: - version: 6.9 + version: 7.1.1 shared-data: buildtool: cli: ./gradlew diff --git a/independent-projects/tools/devtools-testing/src/main/resources/fake-catalog.json b/independent-projects/tools/devtools-testing/src/main/resources/fake-catalog.json index 123d367189fb5f..d46c8961fe4645 100644 --- a/independent-projects/tools/devtools-testing/src/main/resources/fake-catalog.json +++ b/independent-projects/tools/devtools-testing/src/main/resources/fake-catalog.json @@ -314,7 +314,7 @@ "supported-maven-versions": "[3.6.2,)", "proposed-maven-version": "3.8.1", "maven-wrapper-version": "0.7.7", - "gradle-wrapper-version": "6.9" + "gradle-wrapper-version": "7.1.1" } }, "codestarts-artifacts": [ diff --git a/independent-projects/tools/pom.xml b/independent-projects/tools/pom.xml index 916222c0122bfa..9bfa4e4dc4c339 100644 --- a/independent-projects/tools/pom.xml +++ b/independent-projects/tools/pom.xml @@ -28,7 +28,7 @@ 3.8.1 0.7.7 - 6.9 + 7.1.1 diff --git a/integration-tests/devtools/src/test/java/io/quarkus/devtools/codestarts/quarkus/QuarkusCodestartBuildIT.java b/integration-tests/devtools/src/test/java/io/quarkus/devtools/codestarts/quarkus/QuarkusCodestartBuildIT.java index 589a5ab72e54ca..9b8a0084d5e00d 100644 --- a/integration-tests/devtools/src/test/java/io/quarkus/devtools/codestarts/quarkus/QuarkusCodestartBuildIT.java +++ b/integration-tests/devtools/src/test/java/io/quarkus/devtools/codestarts/quarkus/QuarkusCodestartBuildIT.java @@ -68,7 +68,6 @@ public void testRunTogetherCodestartsScala() throws Exception { @ParameterizedTest @MethodSource("provideLanguages") - @org.junit.jupiter.api.Tag("failsOnJDK16") public void testGradle(String language) throws Exception { final List codestarts = getExtensionCodestarts(); generateProjectRunTests("gradle", language, codestarts); diff --git a/integration-tests/gradle/gradle/wrapper/gradle-wrapper.properties b/integration-tests/gradle/gradle/wrapper/gradle-wrapper.properties index 549d84424d0218..05679dc3c18669 100644 --- a/integration-tests/gradle/gradle/wrapper/gradle-wrapper.properties +++ b/integration-tests/gradle/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/integration-tests/gradle/src/main/resources/additional-source-sets/build.gradle b/integration-tests/gradle/src/main/resources/additional-source-sets/build.gradle index c8375ad1751586..da3a9d0581ad4f 100644 --- a/integration-tests/gradle/src/main/resources/additional-source-sets/build.gradle +++ b/integration-tests/gradle/src/main/resources/additional-source-sets/build.gradle @@ -28,7 +28,7 @@ sourceSets { resources.srcDir 'src/funcTest/resources' } - compileClasspath += sourceSets.main.output + configurations.testRuntimeClasspath + configurations.compileOnly + compileClasspath += sourceSets.main.output + configurations.testRuntimeClasspath runtimeClasspath += output + compileClasspath } } diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-a/deployment/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-a/deployment/build.gradle index e1df700721ca64..910a74d91b9ea4 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-a/deployment/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-a/deployment/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-core-deployment' implementation("org.hibernate:hibernate-core:5.4.9") diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-a/runtime/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-a/runtime/build.gradle index 74cd2b2fa46225..f98721e16d58b9 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-a/runtime/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-a/runtime/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") api("org.hibernate:hibernate-core:5.4.9") { exclude module: "byte-buddy" } diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-b/deployment/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-b/deployment/build.gradle index 6e3b661150ae75..f5bb098b9c2081 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-b/deployment/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-b/deployment/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-core-deployment' implementation project(':ext-b:runtime') } diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-b/runtime/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-b/runtime/build.gradle index 8e953ecb111138..3aa341d7dcfd80 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-b/runtime/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-b/runtime/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") } publishing { diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-c/deployment/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-c/deployment/build.gradle index dfc2d20588b219..8bb5130ba49f25 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-c/deployment/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-c/deployment/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-core-deployment' implementation project(':ext-c:runtime') } diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-c/runtime/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-c/runtime/build.gradle index c5cc40ca08e1b9..acf77bfd6a82a1 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-c/runtime/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-c/runtime/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") } publishing { diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-d/deployment/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-d/deployment/build.gradle index f30bc1d57b5a9e..9a1e1d2aa683f0 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-d/deployment/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-d/deployment/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-core-deployment' implementation project(':ext-d:runtime') } diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-d/runtime/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-d/runtime/build.gradle index df8c65101b372c..a220c4dbc2b7a3 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-d/runtime/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-d/runtime/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") } publishing { diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-e/deployment/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-e/deployment/build.gradle index 8850360dd87874..011c8f61bb3dea 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-e/deployment/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-e/deployment/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-core-deployment' implementation project(':ext-e:runtime') } diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-e/runtime/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-e/runtime/build.gradle index e30c7bce502dd4..1ff4a42c23800f 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-e/runtime/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-e/runtime/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") } publishing { diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-f/deployment/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-f/deployment/build.gradle index 7bec173ec98242..0f6024bad805fa 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-f/deployment/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-f/deployment/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-core-deployment' implementation project(':ext-f:runtime') } diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-f/runtime/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-f/runtime/build.gradle index 7e518aab9e4db4..f5adf3526dee18 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-f/runtime/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-f/runtime/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation project(':ext-g:runtime') } diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-g/deployment/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-g/deployment/build.gradle index c2a80e897026ce..4e839044248e5d 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-g/deployment/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-g/deployment/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-core-deployment' implementation project(':ext-g:runtime') } diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-g/runtime/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-g/runtime/build.gradle index 4c10fd21726d95..5372e8f7d889cc 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-g/runtime/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-g/runtime/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") } publishing { diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-h/deployment/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-h/deployment/build.gradle index c047094933d884..2334a380dfec18 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-h/deployment/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-h/deployment/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-core-deployment' implementation project(':ext-h:runtime') implementation project(':ext-k:deployment') diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-h/runtime/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-h/runtime/build.gradle index 6022e4348452b6..dec8f131a13bd5 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-h/runtime/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-h/runtime/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation project(':ext-k:runtime') } diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-i/deployment/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-i/deployment/build.gradle index 7d4af5dd45f4d6..098cf5cd4cb6e1 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-i/deployment/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-i/deployment/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-core-deployment' implementation project(':ext-i:runtime') } diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-i/runtime/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-i/runtime/build.gradle index c35b697d101040..2dc10e25a07b07 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-i/runtime/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-i/runtime/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") } publishing { diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-j/deployment/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-j/deployment/build.gradle index da6696f68c95bc..db784651b25e0d 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-j/deployment/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-j/deployment/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-core-deployment' implementation project(':ext-j:runtime') } diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-j/runtime/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-j/runtime/build.gradle index e2f225afeff7c9..70877fef9490b1 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-j/runtime/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-j/runtime/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") } publishing { diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-k/deployment/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-k/deployment/build.gradle index f70b4a9cf4f105..bf9b119032c72a 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-k/deployment/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-k/deployment/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-core-deployment' implementation project(':ext-k:runtime') implementation project(':ext-t:deployment') diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-k/runtime/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-k/runtime/build.gradle index 41b642a2f02de9..4219c83a527065 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-k/runtime/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-k/runtime/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation project(':ext-t:runtime') } diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-l/deployment/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-l/deployment/build.gradle index 14da6329fdef9c..1cfe5c47bcbe5d 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-l/deployment/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-l/deployment/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-core-deployment' implementation project(':ext-l:runtime') implementation project(':ext-j:deployment') diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-l/runtime/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-l/runtime/build.gradle index 7f76f32dda076e..9cbd8b430dcf6e 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-l/runtime/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-l/runtime/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation project(':ext-j:runtime') } diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-m/deployment/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-m/deployment/build.gradle index f779ff12f6964b..1ff8de7b475344 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-m/deployment/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-m/deployment/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-core-deployment' implementation project(':ext-m:runtime') } diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-m/runtime/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-m/runtime/build.gradle index 4c1479646966a8..4936eea53c00f1 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-m/runtime/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-m/runtime/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") } publishing { diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-n/deployment/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-n/deployment/build.gradle index 054e8aca25a87e..b1942d1868a3f4 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-n/deployment/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-n/deployment/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-core-deployment' implementation project(':ext-n:runtime') implementation project(':ext-i:deployment') diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-n/runtime/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-n/runtime/build.gradle index a2402257025c8c..788abe98ca5573 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-n/runtime/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-n/runtime/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation project(':ext-i:runtime') } diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-o/deployment/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-o/deployment/build.gradle index 7ee3fddb014d4a..aacb39a1d7632a 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-o/deployment/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-o/deployment/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-core-deployment' implementation project(':ext-o:runtime') } diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-o/runtime/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-o/runtime/build.gradle index d2f82db94223aa..7256098019552f 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-o/runtime/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-o/runtime/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") } publishing { diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-p/deployment/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-p/deployment/build.gradle index 206679d2f39297..cb45b41c7fc7a6 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-p/deployment/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-p/deployment/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-core-deployment' implementation project(':ext-p:runtime') } diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-p/runtime/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-p/runtime/build.gradle index b8e294edae780d..72f1e487e67edb 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-p/runtime/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-p/runtime/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") } publishing { diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-r/deployment/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-r/deployment/build.gradle index 77d0ddb7f40eb5..3cc128a70795e1 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-r/deployment/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-r/deployment/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-core-deployment' implementation project(':ext-r:runtime') } diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-r/runtime/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-r/runtime/build.gradle index c477c9e2e011fc..a84867fd7cbd33 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-r/runtime/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-r/runtime/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") } publishing { diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-s/deployment/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-s/deployment/build.gradle index 907f6780b9c7c5..f16a7278896597 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-s/deployment/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-s/deployment/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-core-deployment' implementation project(':ext-s:runtime') implementation project(':ext-u:deployment') diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-s/runtime/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-s/runtime/build.gradle index 3b9e7539acd784..fdff0db83cb022 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-s/runtime/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-s/runtime/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation project(':ext-u:runtime') } diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-t/deployment/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-t/deployment/build.gradle index a1a5ef492cdf10..c4be014113ab08 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-t/deployment/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-t/deployment/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-core-deployment' implementation project(':ext-t:runtime') } diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-t/runtime/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-t/runtime/build.gradle index 567fe58820d828..2ba55f42b1e24f 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-t/runtime/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-t/runtime/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") } publishing { diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-u/deployment/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-u/deployment/build.gradle index 957bcfc5e2c62f..926ef34914bf00 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-u/deployment/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-u/deployment/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-core-deployment' implementation project(':ext-u:runtime') } diff --git a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-u/runtime/build.gradle b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-u/runtime/build.gradle index 3adc8ae1c1d732..cb13018ee12ec2 100644 --- a/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-u/runtime/build.gradle +++ b/integration-tests/gradle/src/main/resources/conditional-dependencies/ext-u/runtime/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") } publishing { diff --git a/integration-tests/gradle/src/main/resources/test-resources-in-build-steps/deployment/build.gradle b/integration-tests/gradle/src/main/resources/test-resources-in-build-steps/deployment/build.gradle index 01b7f63cca5428..39b2f6cbebc966 100644 --- a/integration-tests/gradle/src/main/resources/test-resources-in-build-steps/deployment/build.gradle +++ b/integration-tests/gradle/src/main/resources/test-resources-in-build-steps/deployment/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") implementation 'io.quarkus:quarkus-core-deployment' implementation project(":runtime") } diff --git a/integration-tests/gradle/src/main/resources/test-resources-in-build-steps/runtime/build.gradle b/integration-tests/gradle/src/main/resources/test-resources-in-build-steps/runtime/build.gradle index cb36290908b40b..9f095cb8e494bc 100644 --- a/integration-tests/gradle/src/main/resources/test-resources-in-build-steps/runtime/build.gradle +++ b/integration-tests/gradle/src/main/resources/test-resources-in-build-steps/runtime/build.gradle @@ -4,7 +4,7 @@ plugins { } dependencies { - implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") + implementation platform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") } publishing {