Skip to content

Bump quarkus.version from 3.22.2 to 3.23.0 #259

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
4 changes: 2 additions & 2 deletions examples/gradle-resteasy/gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Workaround for https://github.com/quarkiverse/quarkus-groovy/issues/256
quarkus.native.additional-build-args=--report-unsupported-elements-at-runtime
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Workaround for https://github.com/quarkiverse/quarkus-groovy/issues/256
quarkus.native.additional-build-args=--report-unsupported-elements-at-runtime
2 changes: 2 additions & 0 deletions examples/resteasy/src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Workaround for https://github.com/quarkiverse/quarkus-groovy/issues/256
quarkus.native.additional-build-args=--report-unsupported-elements-at-runtime
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Workaround for https://github.com/quarkiverse/quarkus-groovy/issues/256
quarkus.native.additional-build-args=--report-unsupported-elements-at-runtime
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Workaround for https://github.com/quarkiverse/quarkus-groovy/issues/256
quarkus.native.additional-build-args=--report-unsupported-elements-at-runtime
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<maven.compiler.release>17</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<quarkus.version>3.22.2</quarkus.version>
<quarkus.version>3.23.0</quarkus.version>
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
<quarkus.platform.version>${quarkus.version}</quarkus.platform.version>
Expand Down