We have fixed a few bugs and added enhancements since Apache Commons
Parent 87 was released, so I would like to release Apache Commons
Parent 88.
Apache Commons Parent 88 RC1 is available for review here:
https://dist.apache.org/repos/dist/dev/commons/parent/88-RC1 (svn
revision 79352)
The Git tag commons-parent-88-RC1 commit for this RC is
9601b89b272fa8775b9ea11c51787f96f930ce59 which you can browse here:
https://gitbox.apache.org/repos/asf?p=commons-parent.git;a=commit;h=9601b89b272fa8775b9ea11c51787f96f930ce59
You may checkout this tag using:
git clone https://gitbox.apache.org/repos/asf/commons-parent.git
--branch commons-parent-88-RC1 commons-parent-88-RC1
Maven artifacts are here:
https://repository.apache.org/content/repositories/orgapachecommons-1861/org/apache/commons/commons-parent/88/
These are the artifacts and their hashes:
#Release SHA-512s
#Tue Sep 16 19:46:35 UTC 2025
commons-parent-88-bom.json=ccd445127df815be1a16b81e5c34f4f291d7a9dcd7ca15d5088d243c2ab9e72bce3c82bf8a81c93f994e80f1c136ca0f06a0c713a5350991a97e35dcab19d2fc
commons-parent-88-bom.xml=da2f00b85d06a7d658244d5867bd24d2adf894e0818fe16aec7239f1398b3f221ce0577127e386fd306c88cbd7f0364804c5406e2adf786a5a4872b9f1aa6dd2
commons-parent-88-site.xml=013e428312ff3bda9c7e9bc2f61ddf5e3c3507409169aabf81d899a2d4d851e8a51534ab0458542b42a5b60e64fd50f092993572164157948146829ede0cb8d2
commons-parent-88-src.tar.gz=72d7dd49594c42b2c96608b3a5a7959e9f68ad33bedb151c8426ae164024ad09186b369acb4617e047a594891a137c403b6d87131c7e2727483d1a80de6f7f43
commons-parent-88-src.zip=671d87fa110c3a70e6167bd53b0389585a61e779744d5a76aa3b6aac7d749262a55bfa09d05a6cd369d39569763a59e6d70b39ed756234dc19549800359fc830
org.apache.commons_commons-parent-88.spdx.json=9ed2ecac4febb1d6a20d29e2edc522fbe2547db6cff86d68a2347491ccc90cbe483dece93113e7883b10901ab84760c52b76134826a2872b143507412ed98c21
I have tested this with 'mvn' and 'mvn clean install site' using:
openjdk version "21.0.8" 2025-07-15
OpenJDK Runtime Environment Homebrew (build 21.0.8)
OpenJDK 64-Bit Server VM Homebrew (build 21.0.8, mixed mode, sharing)
Apache Maven 3.9.11 (3e54c93a704957b63ee3494413a2b544fd3d825b)
Maven home: /opt/homebrew/Cellar/maven/3.9.11/libexec
Java version: 21.0.8, vendor: Homebrew, runtime:
/opt/homebrew/Cellar/openjdk@21/21.0.8/libexec/openjdk.jdk/Contents/Home
Default locale: en_US, platform encoding: UTF-8
OS name: "mac os x", version: "15.6.1", arch: "aarch64", family: "mac"
Darwin ****.local 24.6.0 Darwin Kernel Version 24.6.0: Mon Jul 14
11:30:40 PDT 2025; root:xnu-11417.140.69~1/RELEASE_ARM64_T6041 arm64
Docker version 28.3.2, build 578ccf6
Details of changes since 87 are in the release notes:
https://dist.apache.org/repos/dist/dev/commons/parent/88-RC1/RELEASE-NOTES.txt
https://dist.apache.org/repos/dist/dev/commons/parent/88-RC1/site/changes.html
Site:
https://dist.apache.org/repos/dist/dev/commons/parent/88-RC1/site/index.html
(note some *relative* links are broken and the 88 directories are
not yet created - these will be OK once the site is deployed.)
JApiCmp Report (compared to 87): N/A.
RAT Report:
https://dist.apache.org/repos/dist/dev/commons/parent/88-RC1/site/rat-report.html
KEYS:
https://downloads.apache.org/commons/KEYS
Please review the release candidate and vote.
This vote will close no sooner than 72 hours from now.
[ ] +1 Release these artifacts
[ ] +0 OK, but...
[ ] -0 OK, but really should fix...
[ ] -1 I oppose this release because...
Thank you,
Gary Gregory,
Release Manager (using key 86fdc7e2a11262cb)
The following is intended as a helper and refresher for reviewers.
Validating a release candidate
==============================
These guidelines are NOT complete.
Requirements: Git, Java, and Maven.
You can validate a release from a release candidate (RC) tag as follows.
1a) Download and decompress the source archive from:
https://dist.apache.org/repos/dist/dev/commons/parent/88-RC1/source
1b) Check out the RC tag from git (optional)
This is optional, as a reviewer must check source distributions as a minimum.
git clone https://gitbox.apache.org/repos/asf/commons-parent.git
--branch commons-parent-88-RC1 commons-parent-88-RC1
cd commons-parent-88-RC1
2) Checking the build
All components should include a default Maven goal, such that you can
run 'mvn' from the command line by itself.
2) Check Apache licenses
This step is not required if the site includes a RAT report page which
you then must check.
This check should be included in the default Maven build, but you can
check it with:
mvn apache-rat:check
3) Check binary compatibility
This step is not required if the site includes a JApiCmp report page
which you then must check.
This check should be included in the default Maven build, but you can
check it with:
mvn verify -DskipTests -P japicmp japicmp:cmp
4) Build the package
This check should be included in the default Maven build, but you can
check it with:
mvn -V clean package
You can record the Maven and Java version produced by -V in your VOTE reply.
To gather OS information from a command line:
Windows: ver
Linux: uname -a
4b) Check reproducibility
To check that a build is reproducible, run:
mvn clean verify artifact:compare -DskipTests
-Dreference.repo=https://repository.apache.org/content/repositories/staging/
'-Dbuildinfo.ignore=*/*.spdx.json'
Note that this excludes SPDX files from the check.
5) Build the site for a single module project
Note: Some plugins require the components to be installed instead of packaged.
mvn site
Check the site reports in:
- Windows: target\site\index.html
- Linux: target/site/index.html
-the end-
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]