From 4748e26b94efa255eb35fef4e711021b7e53d3f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 23 May 2025 10:00:12 +0000 Subject: [PATCH 1/2] Bump quarkus.version from 3.22.2 to 3.23.0 Bumps `quarkus.version` from 3.22.2 to 3.23.0. Updates `io.quarkus:quarkus-bom` from 3.22.2 to 3.23.0 - [Release notes](https://github.com/quarkusio/quarkus/releases) - [Commits](https://github.com/quarkusio/quarkus/compare/3.22.2...3.23.0) Updates `io.quarkus:quarkus-test-maven` from 3.22.2 to 3.23.0 Updates `io.quarkus:quarkus-enforcer-rules` from 3.22.2 to 3.23.0 - [Release notes](https://github.com/quarkusio/quarkus/releases) - [Commits](https://github.com/quarkusio/quarkus/compare/3.22.2...3.23.0) Updates `io.quarkus:quarkus-maven-plugin` from 3.22.2 to 3.23.0 Updates `io.quarkus:quarkus-extension-processor` from 3.22.2 to 3.23.0 Updates `io.quarkus:quarkus-extension-maven-plugin` from 3.22.2 to 3.23.0 - [Release notes](https://github.com/quarkusio/quarkus/releases) - [Commits](https://github.com/quarkusio/quarkus/compare/3.22.2...3.23.0) --- updated-dependencies: - dependency-name: io.quarkus:quarkus-bom dependency-version: 3.23.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: io.quarkus:quarkus-test-maven dependency-version: 3.23.0 dependency-type: direct:development update-type: version-update:semver-minor - dependency-name: io.quarkus:quarkus-enforcer-rules dependency-version: 3.23.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: io.quarkus:quarkus-maven-plugin dependency-version: 3.23.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: io.quarkus:quarkus-extension-processor dependency-version: 3.23.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: io.quarkus:quarkus-extension-maven-plugin dependency-version: 3.23.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 587e7f2..568975e 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ 17 UTF-8 UTF-8 - 3.22.2 + 3.23.0 quarkus-bom io.quarkus ${quarkus.version} From 892d3d8c7644d3c46815a22388919a480c2fc14d Mon Sep 17 00:00:00 2001 From: Nicolas Filotto Date: Wed, 4 Jun 2025 08:56:03 +0200 Subject: [PATCH 2/2] Ref #256: Add --report-unsupported-elements-at-runtime as workaround --- README.md | 2 +- examples/gradle-resteasy/gradle.properties | 4 ++-- .../gradle-resteasy/src/main/resources/application.properties | 2 ++ .../reactive-routes/src/main/resources/application.properties | 2 ++ examples/resteasy/src/main/resources/application.properties | 2 ++ examples/spring-web/src/main/resources/application.properties | 2 ++ .../src/main/resources/application.properties | 2 ++ .../src/main/resources/application.properties | 2 ++ .../rest/src/main/resources/application.properties | 2 ++ .../resteasy/src/main/resources/application.properties | 2 ++ 10 files changed, 19 insertions(+), 3 deletions(-) create mode 100644 examples/gradle-resteasy/src/main/resources/application.properties create mode 100644 examples/reactive-routes/src/main/resources/application.properties create mode 100644 examples/resteasy/src/main/resources/application.properties create mode 100644 examples/spring-web/src/main/resources/application.properties create mode 100644 integration-tests/resteasy/src/main/resources/application.properties diff --git a/README.md b/README.md index 2c99ed2..c599d42 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [![License](https://img.shields.io/github/license/quarkiverse/quarkus-groovy)](http://www.apache.org/licenses/LICENSE-2.0) [![Central](https://img.shields.io/maven-central/v/io.quarkiverse.groovy/quarkus-groovy?color=green)](https://search.maven.org/search?q=g:io.quarkiverse.groovy%20AND%20a:quarkus-groovy) -Quarkus Groovy is a Quarkus extension that allows you to write Quarkus 3.22 applications in Groovy 4.0. +Quarkus Groovy is a Quarkus extension that allows you to write Quarkus 3.23 applications in Groovy 4.0. With Maven, add the following dependency to your `pom.xml` to get started: diff --git a/examples/gradle-resteasy/gradle.properties b/examples/gradle-resteasy/gradle.properties index 1f4cabe..d3a2671 100644 --- a/examples/gradle-resteasy/gradle.properties +++ b/examples/gradle-resteasy/gradle.properties @@ -1,5 +1,5 @@ quarkusPlatformArtifactId=quarkus-bom quarkusPlatformGroupId=io.quarkus -quarkusPluginVersion=3.22.2 -quarkusPlatformVersion=3.22.2 +quarkusPluginVersion=3.23.0 +quarkusPlatformVersion=3.23.0 version=999-SNAPSHOT diff --git a/examples/gradle-resteasy/src/main/resources/application.properties b/examples/gradle-resteasy/src/main/resources/application.properties new file mode 100644 index 0000000..72f0ae1 --- /dev/null +++ b/examples/gradle-resteasy/src/main/resources/application.properties @@ -0,0 +1,2 @@ +# Workaround for https://github.com/quarkiverse/quarkus-groovy/issues/256 +quarkus.native.additional-build-args=--report-unsupported-elements-at-runtime diff --git a/examples/reactive-routes/src/main/resources/application.properties b/examples/reactive-routes/src/main/resources/application.properties new file mode 100644 index 0000000..72f0ae1 --- /dev/null +++ b/examples/reactive-routes/src/main/resources/application.properties @@ -0,0 +1,2 @@ +# Workaround for https://github.com/quarkiverse/quarkus-groovy/issues/256 +quarkus.native.additional-build-args=--report-unsupported-elements-at-runtime diff --git a/examples/resteasy/src/main/resources/application.properties b/examples/resteasy/src/main/resources/application.properties new file mode 100644 index 0000000..72f0ae1 --- /dev/null +++ b/examples/resteasy/src/main/resources/application.properties @@ -0,0 +1,2 @@ +# Workaround for https://github.com/quarkiverse/quarkus-groovy/issues/256 +quarkus.native.additional-build-args=--report-unsupported-elements-at-runtime diff --git a/examples/spring-web/src/main/resources/application.properties b/examples/spring-web/src/main/resources/application.properties new file mode 100644 index 0000000..72f0ae1 --- /dev/null +++ b/examples/spring-web/src/main/resources/application.properties @@ -0,0 +1,2 @@ +# Workaround for https://github.com/quarkiverse/quarkus-groovy/issues/256 +quarkus.native.additional-build-args=--report-unsupported-elements-at-runtime diff --git a/integration-tests/hibernate-orm-panache/src/main/resources/application.properties b/integration-tests/hibernate-orm-panache/src/main/resources/application.properties index 3867ff6..c6317b6 100644 --- a/integration-tests/hibernate-orm-panache/src/main/resources/application.properties +++ b/integration-tests/hibernate-orm-panache/src/main/resources/application.properties @@ -8,3 +8,5 @@ quarkus.hibernate-orm.statistics=true quarkus.hibernate-orm.metrics.enabled=true quarkus.package.quiltflower.enabled=true +# Workaround for https://github.com/quarkiverse/quarkus-groovy/issues/256 +quarkus.native.additional-build-args=--report-unsupported-elements-at-runtime diff --git a/integration-tests/hibernate-reactive-panache/src/main/resources/application.properties b/integration-tests/hibernate-reactive-panache/src/main/resources/application.properties index 6d0922b..631779c 100644 --- a/integration-tests/hibernate-reactive-panache/src/main/resources/application.properties +++ b/integration-tests/hibernate-reactive-panache/src/main/resources/application.properties @@ -4,3 +4,5 @@ quarkus.datasource.password=hibernate_orm_test quarkus.datasource.reactive.url=${postgres.reactive.url} quarkus.hibernate-orm.database.generation=drop-and-create +# Workaround for https://github.com/quarkiverse/quarkus-groovy/issues/256 +quarkus.native.additional-build-args=--report-unsupported-elements-at-runtime diff --git a/integration-tests/rest/src/main/resources/application.properties b/integration-tests/rest/src/main/resources/application.properties index dbd2604..2b7e42b 100644 --- a/integration-tests/rest/src/main/resources/application.properties +++ b/integration-tests/rest/src/main/resources/application.properties @@ -29,3 +29,5 @@ mp.messaging.incoming.countries-t2-in.auto.offset.reset=earliest mp.messaging.incoming.countries-t2-in.value.deserializer=org.apache.kafka.common.serialization.StringDeserializer quarkus.package.quiltflower.enabled=true +# Workaround for https://github.com/quarkiverse/quarkus-groovy/issues/256 +quarkus.native.additional-build-args=--report-unsupported-elements-at-runtime diff --git a/integration-tests/resteasy/src/main/resources/application.properties b/integration-tests/resteasy/src/main/resources/application.properties new file mode 100644 index 0000000..72f0ae1 --- /dev/null +++ b/integration-tests/resteasy/src/main/resources/application.properties @@ -0,0 +1,2 @@ +# Workaround for https://github.com/quarkiverse/quarkus-groovy/issues/256 +quarkus.native.additional-build-args=--report-unsupported-elements-at-runtime