+1 (nb) On Sun, 29 Dec 2024 at 21:16, Gary Gregory <garydgreg...@gmail.com> wrote: > > 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 79. > > The most important change is the migration to Doxia 2 which allows the use > of current Maven plugins. > > Apache Commons Parent 79 RC1 is available for review here: > https://dist.apache.org/repos/dist/dev/commons/parent/79-RC1 (svn > revision 73900) > > The Git tag commons-parent-79-RC1 commit for this RC is > ea53671d7d01340bc787c735069dddff712a9c13 which you can browse here: > > https://gitbox.apache.org/repos/asf?p=commons-parent.git;a=commit;h=ea53671d7d01340bc787c735069dddff712a9c13 > You may checkout this tag using: > git clone https://gitbox.apache.org/repos/asf/commons-parent.git > --branch commons-parent-79-RC1 commons-parent-79-RC1 > > Maven artifacts are here: > > https://repository.apache.org/content/repositories/orgapachecommons-1796/org/apache/commons/commons-parent/79/ > > These are the artifacts and their hashes: > > #Release SHA-512s > #Sun Dec 29 20:11:12 UTC 2024 > commons-parent-79-bom.json=4e7fb23db62d038cf535ed679b8721ef07aa9738e9c0d14ff5412698e9d829f35232aba31b554997148a8aa87b67dfee2d7d822bb4220c8399f68afaadf1538d > commons-parent-79-bom.xml=0807a3b8956729680c7477ab92bb04db6cb9615088dc941e2c9e91e8b1ae402c6f7be479c24e6a8775935e6e5bf2f7b59ec0e68ca6c79be513fe4a1ee3bcbf66 > commons-parent-79-site.xml=1c4e77414868a5a026a49302efbb2b629d86f210ca2430d1996e7e540706f1ed1906d36a4118b93580d7eaec7440c70ef22dfae280e568df77ae8e165b2cc159 > commons-parent-79-src.tar.gz=3d6707221a99df589368a7c75dc05f97cf9dc844649e97107bee69ab4419f7089aef724a1feea6e2b186d5bbd4794eaf7ec2ba3b17b7c9fdc572c8fea506c096 > commons-parent-79-src.zip=a78244a58558ea0f8d754994a241b8ba621ff1176a8159f06972adbfe3ef498692dfe4084e36c2b3582523544d35d46ec866542d6d0c9790db74c536efb47bce > org.apache.commons_commons-parent-79.spdx.json=89d7315dabb12ea3bb8f967683e8c36f5d7b556b2c88167b2c728ed356ad83ce21cca6bac8ca00d9846c63c1db3ac9c39dd2997461f2abefb3e9683defadb014 > > > > I have tested this with 'mvn' and 'mvn -e -V -Prelease -Ptest-deploy -P > jacoco -P japicmp clean package site deploy' using: > > openjdk version "17.0.13" 2024-10-15 > OpenJDK Runtime Environment Homebrew (build 17.0.13+0) > OpenJDK 64-Bit Server VM Homebrew (build 17.0.13+0, mixed mode, sharing) > > Apache Maven 3.9.9 (8e8579a9e76f7d015ee5ec7bfcdc97d260186937) > Maven home: /opt/homebrew/Cellar/maven/3.9.9/libexec > Java version: 17.0.13, vendor: Homebrew, runtime: > /opt/homebrew/Cellar/openjdk@17/17.0.13/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/79-RC1/RELEASE-NOTES.txt > > https://dist.apache.org/repos/dist/dev/commons/parent/79-RC1/site/changes-report.html
Please update changes-report.html -> changes.html in vote template, so should be: https://dist.apache.org/repos/dist/dev/commons/parent/79-RC1/site/changes.html > > Site: > > https://dist.apache.org/repos/dist/dev/commons/parent/79-RC1/site/index.html > (note some *relative* links are broken and the 79 directories are not > yet created - these will be OK once the site is deployed.) > > JApiCmp Report (compared to 79): > > https://dist.apache.org/repos/dist/dev/commons/parent/79-RC1/site/japicmp.html > This is empty since this is not Java code. > > RAT Report: > > https://dist.apache.org/repos/dist/dev/commons/parent/79-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, Maven. > > You can validate a release from a release candidate (RC) tag as follows. > > 1a) Clone and checkout the RC tag > > git clone https://gitbox.apache.org/repos/asf/commons-parent.git --branch > commons-parent-79-RC1 commons-parent-79-RC1 > cd commons-parent-79-RC1 > > 1b) Download and unpack the source archive from: > > https://dist.apache.org/repos/dist/dev/commons/parent/79-RC1/source > > 2) Check Apache licenses > > This step is not required if the site includes a RAT report page which you > then must check. > > mvn apache-rat:check > > 3) Check binary compatibility > > Older components still use Apache Clirr: > > This step is not required if the site includes a Clirr report page which > you then must check. > > mvn clirr:check > > Newer components use JApiCmp with the japicmp Maven Profile: > > This step is not required if the site includes a JApiCmp report page which > you then must check. > > mvn install -DskipTests -P japicmp japicmp:cmp > > 4) Build the package > > 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 > > 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- -- Sławomir Jaranowski --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.org