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/qpid-jms.git
The following commit(s) were added to refs/heads/main by this push:
new 9cbf7b71 QPIDJMS-620: update to Apache parent pom 37
9cbf7b71 is described below
commit 9cbf7b715b82c92afa8793439833620ba10c8732
Author: Robbie Gemmell <[email protected]>
AuthorDate: Mon Jan 19 16:37:27 2026 +0000
QPIDJMS-620: update to Apache parent pom 37
- Defer to parent enforcer checks for Maven and Java versions.
- Now requires Maven 3.9+ to build.
---
pom.xml | 38 +++-----------------------------------
1 file changed, 3 insertions(+), 35 deletions(-)
diff --git a/pom.xml b/pom.xml
index cd44234c..18bbed7d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -18,7 +18,7 @@
<parent>
<groupId>org.apache</groupId>
<artifactId>apache</artifactId>
- <version>33</version>
+ <version>37</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -64,6 +64,8 @@
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.release>11</maven.compiler.release>
+ <javaVersion>11</javaVersion>
+
<project.build.outputTimestamp>2025-09-12T16:38:03Z</project.build.outputTimestamp>
<!-- Test properties -->
@@ -375,40 +377,6 @@
</excludes>
</configuration>
</plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-enforcer-plugin</artifactId>
- <executions>
- <execution>
- <id>enforce-java-version</id>
- <goals>
- <goal>enforce</goal>
- </goals>
- <configuration>
- <rules>
- <requireJavaVersion>
- <version>[11,)</version>
- <message>You must use Java 11+ to build</message>
- </requireJavaVersion>
- </rules>
- </configuration>
- </execution>
- <execution>
- <id>enforce-maven-version</id>
- <goals>
- <goal>enforce</goal>
- </goals>
- <configuration>
- <rules>
- <requireMavenVersion>
- <version>3.5.0</version>
- <message>You must use Maven 3.5.0+ to build</message>
- </requireMavenVersion>
- </rules>
- </configuration>
- </execution>
- </executions>
- </plugin>
</plugins>
</build>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]