Skip to content

Commit b0cdfcf

Browse files
Update Maven Version to 3.9.12 in Project
### What I changed - Updated Maven to 3.9.12 in both the build and wrapper configuration. - pom.xml: set <maven.version> to 3.9.12 (used by enforcer and prerequisites across modules). - .mvn/wrapper/maven-wrapper.properties: updated distributionUrl to apache-maven-3.9.12. ### Verification performed - Ran ./mvnw -v to confirm the wrapper downloads and uses Apache Maven 3.9.12. - Evaluated the property via ./mvnw -N help:evaluate -Dexpression=maven.version -DforceStdout → 3.9.12, confirming POM propagation. ### Notes - The project remains on JDK 8 for compilation (as per existing settings: maven.compiler.source/target=8). The wrapper run showed Java 8 runtime as well. - No source code or tests were modified; this is a build infrastructure update only. ### How to create the PR 1) Create a branch and commit: - git checkout -b chore/update-maven-3.9.12 - git add pom.xml .mvn/wrapper/maven-wrapper.properties - git commit -m "Update Maven to 3.9.12 in POM and wrapper" 2) Push and open PR: - git push origin chore/update-maven-3.9.12 - Open a PR titled: "Update Maven to 3.9.12 (POM + wrapper)" ### Build command reminder (from project guidelines) - ./mvnw package -Dmaven.javadoc.skip=true -PskipBundlePlugin,minimal-fix-latest -Xms3g -Xmx6g -Djdk.xml.xpathExprGrpLimit=500 -Djdk.xml.xpathExprOpLimit=500 ### Files touched - pom.xml - .mvn/wrapper/maven-wrapper.properties
1 parent 9512fb7 commit b0cdfcf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.mvn/wrapper/maven-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
# under the License.
1717
#
1818
# NOTE: maven version should also be changed in pom.xml
19-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.11/apache-maven-3.9.11-bin.zip
19+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.12/apache-maven-3.9.12-bin.zip
2020
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
<maven.compiler.source>8</maven.compiler.source>
7171
<maven.compiler.target>8</maven.compiler.target>
7272
<mainClass/>
73-
<maven.version>3.9.11</maven.version> <!-- please also change version in .mvn/wrapper/maven-wrapper.properties -->
73+
<maven.version>3.9.12</maven.version> <!-- please also change version in .mvn/wrapper/maven-wrapper.properties -->
7474
<maven-libs-version>${maven.version}</maven-libs-version>
7575
<maven-plugin-api-version>${maven.version}</maven-plugin-api-version>
7676
<maven-resources-plugin-version>3.4.0</maven-resources-plugin-version>

0 commit comments

Comments
 (0)