This is an automated email from the ASF dual-hosted git repository. robbie pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/artemis.git
commit ae5fa326da0e41d77f8e89075a7c9a5eb7a9c54f Author: Justin Bertram <[email protected]> AuthorDate: Tue Feb 10 10:23:14 2026 -0600 ARTEMIS-5896 Bump ErrorProne to 2.48.0 & limit to JDK25+ --- .github/workflows/build.yml | 2 +- docs/user-manual/versions.adoc | 1 + pom.xml | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f68e82e368..6938d40587 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -116,7 +116,7 @@ jobs: if: matrix.java != '25' run: | cd artemis - mvn -s .github/maven-settings.xml -DskipTests -Derrorprone -Pdev -Pjmh -Popenwire-tests -DskipActiveMQ5Tests -Pcompatibility-tests -DskipCompatibilityTests -Dshade-plugin-create-sources=true install + mvn -s .github/maven-settings.xml -DskipTests -Pdev -Pjmh -Popenwire-tests -DskipActiveMQ5Tests -Pcompatibility-tests -DskipCompatibilityTests -Dshade-plugin-create-sources=true install - name: Set Examples Version to Artemis Version run: | diff --git a/docs/user-manual/versions.adoc b/docs/user-manual/versions.adoc index f8e8c28476..ee20a97de6 100644 --- a/docs/user-manual/versions.adoc +++ b/docs/user-manual/versions.adoc @@ -28,6 +28,7 @@ https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12315920&versio * https://issues.apache.org/jira/browse/ARTEMIS-5941[ARTEMIS-5941] - Route wildcard subscriptions direct to demand bindings for improved performance * https://issues.apache.org/jira/browse/ARTEMIS-5951[ARTEMIS-5951] - CTRL-C is now properly handled on 'artemis shell' * https://issues.apache.org/jira/browse/ARTEMIS-5607[ARTEMIS-5607] - It is now possible to disable JMX notifications +* For developers, due to https://issues.apache.org/jira/browse/ARTEMIS-5896[ARTEMIS-5896] ErrorProne will only run when building with Java 25+. == Version 2.52.0 diff --git a/pom.xml b/pom.xml index 83ca3b275b..0ed068fec2 100644 --- a/pom.xml +++ b/pom.xml @@ -113,7 +113,7 @@ <jetty.version>12.1.7</jetty.version> <jetty-servlet-api.version>5.0.2</jetty-servlet-api.version> <jgroups.version>5.3.13.Final</jgroups.version> - <errorprone.version>2.42.0</errorprone.version> + <errorprone.version>2.48.0</errorprone.version> <maven.bundle.plugin.version>6.0.2</maven.bundle.plugin.version> <jib.maven.plugin.version>3.5.1</jib.maven.plugin.version> <versions.maven.plugin.version>2.16.1</versions.maven.plugin.version> @@ -329,6 +329,7 @@ <property> <name>errorprone</name> </property> + <jdk>[25,)</jdk> </activation> <build> <plugins> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
