We have fixed a few bugs and added enhancements since Apache Commons Parent 79 was released, so I would like to release Apache Commons Parent 80.
Apache Commons Parent 80 RC1 is available for review here: https://dist.apache.org/repos/dist/dev/commons/parent/80-RC1 (svn revision 74429) The Git tag commons-parent-80-RC1 commit for this RC is d71cf93030bcb529573b68168807e9cda89c3382 which you can browse here: https://gitbox.apache.org/repos/asf?p=commons-parent.git;a=commit;h=d71cf93030bcb529573b68168807e9cda89c3382 You may checkout this tag using: git clone https://gitbox.apache.org/repos/asf/commons-parent.git --branch commons-parent-80-RC1 commons-parent-80-RC1 Maven artifacts are here: https://repository.apache.org/content/repositories/orgapachecommons-1808/org/apache/commons/commons-parent/80/ These are the artifacts and their hashes: #Release SHA-512s #Sat Jan 25 21:46:13 UTC 2025 commons-parent-80-bom.json=d9b2cf23f9434372139b6185cdf6287fed0a0693b6815a9224fc3543821d4c794b3faa8756bb7384266640ffabb3e8cd5c225bf58759050070b1ea5accfdd5ff commons-parent-80-bom.xml=a2820fa83ed84f9c6652c17b80ca7f33a5a1efff7b901081871e118e999b54ca9e590250b686ce9ce6207dc827af24557069fc2bb5506c65da4a376bef6ae697 commons-parent-80-site.xml=14ba54f9594cfaf7a7d288c248a782e48258427d1ae0e7ce48e4b5be9e9f426d9fadb0bdfff518bd45a29fd9212348cafeac8d9188ae5c907871b62a42148768 commons-parent-80-src.tar.gz=de0859820339820ed72ee38832502f4deb0797d1e0e34f8105e2525581a50183a8e2de4e1c7d2e7ac5bc17f7e25048d224130303c95e7327648e590150694701 commons-parent-80-src.zip=addfc3d0f69efa63e88659b48e2b1ba7a9d24679998cfdb205519adc0df5d1e011f67448b1720bb4849cc7ec92e26c619d998140cf08514408be49901f07a446 org.apache.commons_commons-parent-80.spdx.json=2a9ae4dc66220771b8b0a709877db63f12909a7fb37125e9bdcbf3b09d8d1fc54c83f28d2355c2e14c1444bb382ed38c96371b924dea1f6229291b40986d9b73 I have tested this with: - mvn - mvn -e -V -Prelease -Ptest-deploy -P jacoco -P japicmp clean package site deploy - mvn clean verify artifact:compare -DskipTests -Dreference.repo=https://repository.apache.org/content/repositories/staging/ '-Dbuildinfo.ignore=*/*.spdx.json' Using: openjdk version "17.0.14" 2025-01-21 OpenJDK Runtime Environment Homebrew (build 17.0.14+0) OpenJDK 64-Bit Server VM Homebrew (build 17.0.14+0, mixed mode, sharing) Apache Maven 3.9.9 (8e8579a9e76f7d015ee5ec7bfcdc97d260186937) Maven home: /opt/homebrew/Cellar/maven/3.9.9/libexec Java version: 17.0.14, vendor: Homebrew, runtime: /opt/homebrew/Cellar/openjdk@17/17.0.14/libexec/openjdk.jdk/Contents/Home Default locale: en_US, platform encoding: UTF-8 OS name: "mac os x", version: "15.2", arch: "aarch64", family: "mac" Darwin ****.local 24.2.0 Darwin Kernel Version 24.2.0: Fri Dec 6 19:03:40 PST 2024; root:xnu-11215.61.5~2/RELEASE_ARM64_T6041 arm64 Docker version 27.3.1, build ce12230 Details of changes since 79 are in the release notes: https://dist.apache.org/repos/dist/dev/commons/parent/80-RC1/RELEASE-NOTES.txt https://dist.apache.org/repos/dist/dev/commons/parent/80-RC1/site/changes.html Site: https://dist.apache.org/repos/dist/dev/commons/parent/80-RC1/site/index.html (note some *relative* links are broken and the 80 directories are not yet created - these will be OK once the site is deployed.) JApiCmp Report (compared to 79): No report since this is a POM. RAT Report: https://dist.apache.org/repos/dist/dev/commons/parent/80-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/80-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-80-RC1 commons-parent-80-RC1 cd commons-parent-80-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: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.org