diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..66664e0 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,16 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +* text=auto diff --git a/.github/GH-ROBOTS.txt b/.github/GH-ROBOTS.txt new file mode 100644 index 0000000..e3329e5 --- /dev/null +++ b/.github/GH-ROBOTS.txt @@ -0,0 +1,19 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Keeps on creating FUD PRs in test code +# Does not follow Apache disclosure policies +User-agent: JLLeitschuh/security-research +Disallow: * diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..9ebcd0e --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,27 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +version: 2 +updates: + - package-ecosystem: "maven" + directory: "/" + schedule: + interval: "weekly" + day: "friday" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + day: "friday" diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml new file mode 100644 index 0000000..1d02c3a --- /dev/null +++ b/.github/workflows/maven.yml @@ -0,0 +1,52 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +name: Java CI + +on: [push, pull_request] + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-latest + continue-on-error: ${{ matrix.experimental }} + strategy: + matrix: + java: [ 8, 11, 17 ] + experimental: [false] +# include: +# - java: 18-ea +# experimental: true + + steps: + - uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b + with: + persist-credentials: false + - uses: actions/cache@v3.2.2 + with: + path: ~/.m2/repository + key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} + restore-keys: | + ${{ runner.os }}-maven- + - name: Set up JDK ${{ matrix.java }} + uses: actions/setup-java@v3.9.0 + with: + distribution: 'temurin' + java-version: ${{ matrix.java }} + - name: Build with Maven + run: mvn -V --file pom.xml --no-transfer-progress diff --git a/.github/workflows/scorecards-analysis.yml b/.github/workflows/scorecards-analysis.yml new file mode 100644 index 0000000..65d25e5 --- /dev/null +++ b/.github/workflows/scorecards-analysis.yml @@ -0,0 +1,69 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache license, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the license for the specific language governing permissions and +# limitations under the license. + +name: "Scorecards supply-chain security" + +on: + branch_protection_rule: + schedule: + - cron: "30 1 * * 6" # Weekly on Saturdays + push: + branches: [ "master" ] + +permissions: read-all + +jobs: + + analysis: + + name: "Scorecards analysis" + runs-on: ubuntu-latest + permissions: + # Needed to upload the results to the code-scanning dashboard. + security-events: write + actions: read + id-token: write # This is required for requesting the JWT + contents: read # This is required for actions/checkout + + steps: + + - name: "Checkout code" + uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # 3.2.0 + with: + persist-credentials: false + + - name: "Run analysis" + uses: ossf/scorecard-action@e38b1902ae4f44df626f11ba0734b14fb91f8f86 # 2.1.2 + with: + results_file: results.sarif + results_format: sarif + # A read-only PAT token, which is sufficient for the action to function. + # The relevant discussion: https://github.com/ossf/scorecard-action/issues/188 + repo_token: ${{ secrets.GITHUB_TOKEN }} + # Publish the results for public repositories to enable scorecard badges. + # For more details: https://github.com/ossf/scorecard-action#publishing-results + publish_results: true + + - name: "Upload artifact" + uses: actions/upload-artifact@83fd05a356d7e2593de66fc9913b3002723633cb # 3.1.0 + with: + name: SARIF file + path: results.sarif + retention-days: 5 + + - name: "Upload to code-scanning" + uses: github/codeql-action/upload-sarif@959cbb7472c4d4ad70cdfe6f4976053fe48ab394 # 2.1.37 + with: + sarif_file: results.sarif diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0a4940b --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/.project +/.settings/ +/target/ +/commons-parent.iml diff --git a/BUILDING.txt b/BUILDING.txt index 3c48a74..c95ea99 100644 --- a/BUILDING.txt +++ b/BUILDING.txt @@ -4,7 +4,7 @@ Notes on building/releasing Commons Parent These recipes should work. Other recipes may suit other tastes! This is the short form of "Releasing Commons Components" -http://commons.apache.org/releases/index.html +https://commons.apache.org/releases/index.html To perform the license release audit, a.k.a. "RAT check", run. @@ -24,28 +24,40 @@ Preparing for release candidate: ------------------------------- - Check for updates to plugins and dependencies. - Ensure NOTICE has correct year. -- Ensure changes.xml is up to date; generate RELEASE-NOTES using non-SNAPSHOT version: - mvn changes:announcement-generate -Prelease-notes -Dchanges.version=nn +- Ensure changes.xml is up to date (Release notes are updated during tagging) - Ensure pom.xml header comment agrees with changes for this release -- Regenerate CONTRIBUTING.md: - mvn commons:contributing-md -- Regenerate README.md: - mvn commons:readme-md -- Commit all changes to SVN +- Regenerate files: + mvn commons-build:all -Dproject.inceptionYear=2006 + (N.B. the year is not defined in the pom to avoid propagation to components) +- Check and commit all changes Creating release candidate tag: ------------------------------ -- Checkout trunk in clean workspace: - svn co https://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk commons-parent--RC1 +N.B. This is done in a separate release branch so that the default branch remains a SNAPSHOT version + +- Checkout default branch in clean workspace: + git clone https://gitbox.apache.org/repos/asf/commons-parent.git commons-parent--RC1 - cd commons-parent--RC1 +- Update the release branch: + git checkout release + git pull origin release + git pull origin master - Edit version in pom.xml to remove SNAPSHOT suffix -- Edit three SCM URLs to point to the future (non-RC) tag: - scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent- - scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent- - http://svn.apache.org/viewvc/commons/proper/commons-parent/tags/commons-parent- -- Create tag in SVN from the updated workspace: - svn cp . https://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent--RC1 -m"Create RC1 tag" - (this ensures the trunk never sees the different URLs or released version) + mvn versions:set -DnewVersion=NN -DgenerateBackupPoms=false + edit commons.rc.version to agree with the RC number +- Update the release notes. These are cumulative, so the new notes must be generated in a temporary file + Generate a temporary file, for example: + mvn changes:announcement-generate -Prelease-notes -Dchanges.version=NN -Dchanges.announcementFile=NN.tmp + Edit the file to tidy it up, and prepend it to RELEASE-NOTES.txt + Remove the temporary file +- Create tag the from the updated workspace: + git commit -am "Update version numbers for Commons Parent version NN" + + git tag -s commons-parent-NN-RC1 -m "Tag Commons Parent version NN-RC1" [-u keyid] # signed tag + OR + git tag -a commons-parent-NN-RC1 -m "Tag Commons Parent version NN-RC1" + + git push --tags origin release Test build of tag: ----------------- @@ -58,7 +70,7 @@ Deploy RC to Nexus: ------------------ - Set up passwords in settings.xml (https://wiki.apache.org/commons/UsingNexus) - Same command as above, but omitting -Ptest-deploy profile: -- mvn package deploy -Dassembly.attach=false -Duser.name=ASF-login-name -Prelease +- mvn package deploy -Duser.name=ASF-login-name -Prelease Tidy and close Nexus staging area: --------------------------------- @@ -68,8 +80,14 @@ Tidy and close Nexus staging area: - Open the bottom "Content" tab and navigate to the files - Delete *.asc.md5 and *.asc.sha1 if present - Checkout https://dist.apache.org/repos/dist/dev/commons/commons-parent -- Download the -src archives, their sigs and hashes, then delete them from Nexus. -- Commit the dist/dev/ folder +- create and change to the appropriate subdir: -RCn +- Download the -src archives, and their sigs, then delete them (and md5/sha1 hashes) from Nexus. + wget https://repository.apache.org/service/local/repositories/orgapachecommons-/content/org/apache/commons/commons-parent//commons-parent--src.zip + Likewise for .tar.gz and the corresponding .asc files + TODO: could/should these be fetched from target instead? +- replace the md5 and sha1 hashes with sha512 hashes +- copy RELEASE-NOTES.txt from the git release area +- Commit the dist/dev/commons-parent/-RCn folder Close the staging area - Description: "Apache Commons Parent RC1" Screen does not auto-refresh - you need to press refresh @@ -83,12 +101,26 @@ Assuming the vote passes, login to Nexus and use the "Release" function [If there was a problem identified, Drop the repo instead and start again] Copy the RC Tag to final tag: - URL=https://svn.apache.org/repos/asf/commons/proper/commons-parent/ - svn cp "$URL/tags/commons-parent-37-RC1" "$URL/tags/commons-parent-37" -m "Release commons-parent 37 based on RC1" +---------------------------- +- git co release +- git pull origin release # synch with remote -Publish the source files to +- git diff commons-parent-NN-RCn # check that the workspace agrees with the tag in the vote +- git tag -s commons-parent-NN -m "Create Commons Parent NN release tag" +- git push --tags + +- git checkout master +- git merge release # This should update the RN +- mvn versions:set -DnewVersion=52-SNAPSHOT -DgenerateBackupPoms=false +- Add next release tag in src/changes/changes.xml +- git commit -am "Bump to next development version" + +Publish the source files to +------------------------ https://dist.apache.org/repos/dist/release/commons/commons-parent +TBA + Update site documentation ------------------------- Please check that the site documentation is up to date @@ -97,9 +129,3 @@ https://svn.apache.org/repos/asf/commons/cms-site/trunk/content/xdoc/commons-par This will need updating if any new features / profiles etc are added. It does not list plugin or dependency versions. However at the least please update the version details and URL at the start of the page. - - -Prepare next Release Cycle --------------------------- -Modify pom.xml with next SNAPSHOT version, remove second last history comment -Add next release tag in src/changes/changes.xml and commit changes to trunk diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..3ed5015 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,17 @@ + +The Apache code of conduct page is [https://www.apache.org/foundation/policies/conduct.html](https://www.apache.org/foundation/policies/conduct.html). diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0054f9a..d13d03d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -25,7 +25,7 @@ | commons-build-plugin/trunk/src/main/resources/commons-xdoc-templates | +======================================================================+ | | - | 1) Re-generate using: mvn commons:contributing-md | + | 1) Re-generate using: mvn commons-build:contributing-md | | | | 2) Set the following properties in the component's pom: | | - commons.jira.id (required, alphabetic, upper case) | @@ -50,7 +50,7 @@ Getting Started + Make sure you have a [JIRA account](https://issues.apache.org/jira/). + Make sure you have a [GitHub account](https://github.com/signup/free). -+ If you're planning to implement a new feature it makes sense to discuss you're changes on the [dev list](https://commons.apache.org/mail-lists.html) first. This way you can make sure you're not wasting your time on something that isn't considered to be in Apache Commons Parent's scope. ++ If you're planning to implement a new feature it makes sense to discuss your changes on the [dev list](https://commons.apache.org/mail-lists.html) first. This way you can make sure you're not wasting your time on something that isn't considered to be in Apache Commons Parent's scope. + Submit a [Jira Ticket][jira] for your issue, assuming one does not already exist. + Clearly describe the issue including steps to reproduce when it is a bug. + Make sure you fill in the earliest version that you know has the issue. @@ -61,7 +61,7 @@ Making Changes -------------- + Create a _topic branch_ for your isolated work. - * Usually you should base your branch on the `master` or `trunk` branch. + * Usually you should base your branch on the `master` branch. * A good topic branch name can be the JIRA bug id plus a keyword, e.g. `COMMONSSITE-123-InputStream`. * If you have submitted multiple JIRA issues, try to maintain separate branches and pull requests. + Make commits of logical units. @@ -107,7 +107,7 @@ Additional Resources + [Apache Commons Parent JIRA project page][jira] + [Contributor License Agreement][cla] + [General GitHub documentation](https://help.github.com/) -+ [GitHub pull request documentation](https://help.github.com/send-pull-requests/) ++ [GitHub pull request documentation](https://help.github.com/articles/creating-a-pull-request/) + [Apache Commons Twitter Account](https://twitter.com/ApacheCommons) + `#apache-commons` IRC channel on `irc.freenode.net` diff --git a/NOTICE.txt b/NOTICE.txt index a141a4c..7ac2435 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -1,5 +1,5 @@ Apache Commons Parent -Copyright 2006-2018 The Apache Software Foundation +Copyright 2006-2022 The Apache Software Foundation This product includes software developed at -The Apache Software Foundation (http://www.apache.org/). +The Apache Software Foundation (https://www.apache.org/). diff --git a/README.md b/README.md index 43f21a8..80b0c0b 100644 --- a/README.md +++ b/README.md @@ -1,105 +1,158 @@ - - -Apache Commons Parent -=================== - -[![Build Status](https://travis-ci.org/apache/commons-parent.svg?branch=master)](https://travis-ci.org/apache/commons-parent) -[![Coverage Status](https://coveralls.io/repos/apache/commons-parent/badge.svg?branch=master)](https://coveralls.io/r/apache/commons-parent) -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-parent/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-parent/) -[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html) - -The Apache Commons Parent POM provides common settings for all Apache Commons components. - -Documentation -------------- - -More information can be found on the [Apache Commons Parent homepage](https://commons.apache.org/proper/commons-commons-parent). -The [JavaDoc](https://commons.apache.org/proper/commons-commons-parent/javadocs/api-release) can be browsed. -Questions related to the usage of Apache Commons Parent should be posted to the [user mailing list][ml]. - -Where can I get the latest release? ------------------------------------ -You can download source and binaries from our [download page](https://commons.apache.org/proper/commons-commons-parent/download_commons-parent.cgi). - -Alternatively you can pull it from the central Maven repositories: - -```xml - - org.apache.commons - commons-parent - 43 - -``` - -Contributing ------------- - -We accept Pull Requests via GitHub. The [developer mailing list][ml] is the main channel of communication for contributors. -There are some guidelines which will make applying PRs easier for us: -+ No tabs! Please use spaces for indentation. -+ Respect the code style. -+ Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted create a separate PR for this change. -+ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running ```mvn clean test```. - -If you plan to contribute on a regular basis, please consider filing a [contributor license agreement](https://www.apache.org/licenses/#clas). -You can learn more about contributing via GitHub in our [contribution guidelines](CONTRIBUTING.md). - -License -------- -This code is under the [Apache Licence v2](https://www.apache.org/licenses/LICENSE-2.0). - -See the `NOTICE.txt` file for required notices and attributions. - -Donations ---------- -You like Apache Commons Parent? Then [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. - -Additional Resources --------------------- - -+ [Apache Commons Homepage](https://commons.apache.org/) -+ [Apache Issue Tracker (JIRA)](https://issues.apache.org/jira/browse/COMMONSSITE) -+ [Apache Commons Twitter Account](https://twitter.com/ApacheCommons) -+ `#apache-commons` IRC channel on `irc.freenode.org` - -[ml]:https://commons.apache.org/mail-lists.html + + +Apache Commons Parent +=================== + +[![GitHub Actions Status](https://github.com/apache/commons-parent/workflows/Java%20CI/badge.svg)](https://github.com/apache/commons-parent/actions) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-parent/badge.svg?gav=true)](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-parent/?gav=true) +[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/apache/commons-text/badge)](https://api.securityscorecards.dev/projects/github.com/apache/commons-text) + +The Apache Commons Parent POM provides common settings for all Apache Commons components. + +Documentation +------------- + +More information can be found on the [Apache Commons Parent homepage](https://commons.apache.org/proper/commons-commons-parent). +The [Javadoc](https://commons.apache.org/proper/commons-commons-parent/apidocs) can be browsed. +Questions related to the usage of Apache Commons Parent should be posted to the [user mailing list][ml]. + +Where can I get the latest release? +----------------------------------- +You can download source and binaries from our [download page](https://commons.apache.org/proper/commons-commons-parent/download_commons-parent.cgi). + +Alternatively you can pull it from the central Maven repositories: + +```xml + + org.apache.commons + commons-parent + 56 + +``` + +Contributing +------------ + +We accept Pull Requests via GitHub. The [developer mailing list](https://commons.apache.org/mail-lists.html) is the main channel of communication for contributors. +There are some guidelines which will make applying PRs easier for us: ++ No tabs! Please use spaces for indentation. ++ Respect the code style. ++ Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted create a separate PR for this change. ++ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running ```mvn```. + +If you plan to contribute on a regular basis, please consider filing a [contributor license agreement](https://www.apache.org/licenses/#clas). +You can learn more about contributing via GitHub in our [contribution guidelines](CONTRIBUTING.md). + +License +------- +This code is under the [Apache Licence v2](https://www.apache.org/licenses/LICENSE-2.0). + +See the `NOTICE.txt` file for required notices and attributions. + +Donations +--------- +You like Apache Commons Parent? Then [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. + +Additional Resources +-------------------- + ++ [Apache Commons Homepage](https://commons.apache.org/) ++ [Apache Issue Tracker (JIRA)](https://issues.apache.org/jira/browse/COMMONSSITE) ++ [Apache Commons Slack Channel](https://the-asf.slack.com/archives/C60NVB8AD) ++ [Apache Commons Twitter Account](https://twitter.com/ApacheCommons) ++ `#apache-commons` IRC channel on `irc.freenode.org` + +Apache Commons Components +------------------------- + +| Component | GitHub Repository | Apache Homepage | +| --------- | ----------------- | ----------------| +| Apache Commons BCEL | [commons-bcel](https://github.com/apache/commons-bcel) | [commons-bcel](https://commons.apache.org/proper/commons-bcel) | +| Apache Commons Beanutils | [commons-beanutils](https://github.com/apache/commons-beanutils) | [commons-beanutils](https://commons.apache.org/proper/commons-beanutils) | +| Apache Commons BSF | [commons-bsf](https://github.com/apache/commons-bsf) | [commons-bsf](https://commons.apache.org/proper/commons-bsf) | +| Apache Commons Build-plugin | [commons-build-plugin](https://github.com/apache/commons-build-plugin) | [commons-build-plugin](https://commons.apache.org/proper/commons-build-plugin) | +| Apache Commons Chain | [commons-chain](https://github.com/apache/commons-chain) | [commons-chain](https://commons.apache.org/proper/commons-chain) | +| Apache Commons CLI | [commons-cli](https://github.com/apache/commons-cli) | [commons-cli](https://commons.apache.org/proper/commons-cli) | +| Apache Commons Codec | [commons-codec](https://github.com/apache/commons-codec) | [commons-codec](https://commons.apache.org/proper/commons-codec) | +| Apache Commons Collections | [commons-collections](https://github.com/apache/commons-collections) | [commons-collections](https://commons.apache.org/proper/commons-collections) | +| Apache Commons Compress | [commons-compress](https://github.com/apache/commons-compress) | [commons-compress](https://commons.apache.org/proper/commons-compress) | +| Apache Commons Configuration | [commons-configuration](https://github.com/apache/commons-configuration) | [commons-configuration](https://commons.apache.org/proper/commons-configuration) | +| Apache Commons Crypto | [commons-crypto](https://github.com/apache/commons-crypto) | [commons-crypto](https://commons.apache.org/proper/commons-crypto) | +| Apache Commons CSV | [commons-csv](https://github.com/apache/commons-csv) | [commons-csv](https://commons.apache.org/proper/commons-csv) | +| Apache Commons Daemon | [commons-daemon](https://github.com/apache/commons-daemon) | [commons-daemon](https://commons.apache.org/proper/commons-daemon) | +| Apache Commons DBCP | [commons-dbcp](https://github.com/apache/commons-dbcp) | [commons-dbcp](https://commons.apache.org/proper/commons-dbcp) | +| Apache Commons Dbutils | [commons-dbutils](https://github.com/apache/commons-dbutils) | [commons-dbutils](https://commons.apache.org/proper/commons-dbutils) | +| Apache Commons Digester | [commons-digester](https://github.com/apache/commons-digester) | [commons-digester](https://commons.apache.org/proper/commons-digester) | +| Apache Commons Email | [commons-email](https://github.com/apache/commons-email) | [commons-email](https://commons.apache.org/proper/commons-email) | +| Apache Commons Exec | [commons-exec](https://github.com/apache/commons-exec) | [commons-exec](https://commons.apache.org/proper/commons-exec) | +| Apache Commons Fileupload | [commons-fileupload](https://github.com/apache/commons-fileupload) | [commons-fileupload](https://commons.apache.org/proper/commons-fileupload) | +| Apache Commons Functor | [commons-functor](https://github.com/apache/commons-functor) | [commons-functor](https://commons.apache.org/proper/commons-functor) | +| Apache Commons Geometry | [commons-geometry](https://github.com/apache/commons-geometry) | [commons-geometry](https://commons.apache.org/proper/commons-geometry) | +| Apache Commons Graph | [commons-graph](https://github.com/apache/commons-graph) | [commons-graph](https://commons.apache.org/proper/commons-graph) | +| Apache Commons Imaging | [commons-imaging](https://github.com/apache/commons-imaging) | [commons-imaging](https://commons.apache.org/proper/commons-imaging) | +| Apache Commons IO | [commons-io](https://github.com/apache/commons-io) | [commons-io](https://commons.apache.org/proper/commons-io) | +| Apache Commons JCI | [commons-jci](https://github.com/apache/commons-jci) | [commons-jci](https://commons.apache.org/proper/commons-jci) | +| Apache Commons JCS | [commons-jcs](https://github.com/apache/commons-jcs) | [commons-jcs](https://commons.apache.org/proper/commons-jcs) | +| Apache Commons Jelly | [commons-jelly](https://github.com/apache/commons-jelly) | [commons-jelly](https://commons.apache.org/proper/commons-jelly) | +| Apache Commons Jexl | [commons-jexl](https://github.com/apache/commons-jexl) | [commons-jexl](https://commons.apache.org/proper/commons-jexl) | +| Apache Commons Jxpath | [commons-jxpath](https://github.com/apache/commons-jxpath) | [commons-jxpath](https://commons.apache.org/proper/commons-jxpath) | +| Apache Commons Lang | [commons-lang](https://github.com/apache/commons-lang) | [commons-lang](https://commons.apache.org/proper/commons-lang) | +| Apache Commons Logging | [commons-logging](https://github.com/apache/commons-logging) | [commons-logging](https://commons.apache.org/proper/commons-logging) | +| Apache Commons Math | [commons-math](https://github.com/apache/commons-math) | [commons-math](https://commons.apache.org/proper/commons-math) | +| Apache Commons Net | [commons-net](https://github.com/apache/commons-net) | [commons-net](https://commons.apache.org/proper/commons-net) | +| Apache Commons Numbers | [commons-numbers](https://github.com/apache/commons-numbers) | [commons-numbers](https://commons.apache.org/proper/commons-numbers) | +| Apache Commons Parent | [commons-parent](https://github.com/apache/commons-parent) | [commons-parent](https://commons.apache.org/proper/commons-parent) | +| Apache Commons Pool | [commons-pool](https://github.com/apache/commons-pool) | [commons-pool](https://commons.apache.org/proper/commons-pool) | +| Apache Commons Proxy | [commons-proxy](https://github.com/apache/commons-proxy) | [commons-proxy](https://commons.apache.org/proper/commons-proxy) | +| Apache Commons RDF | [commons-rdf](https://github.com/apache/commons-rdf) | [commons-rdf](https://commons.apache.org/proper/commons-rdf) | +| Apache Commons Release-plugin | [commons-release-plugin](https://github.com/apache/commons-release-plugin) | [commons-release-plugin](https://commons.apache.org/proper/commons-release-plugin) | +| Apache Commons Rng | [commons-rng](https://github.com/apache/commons-rng) | [commons-rng](https://commons.apache.org/proper/commons-rng) | +| Apache Commons Scxml | [commons-scxml](https://github.com/apache/commons-scxml) | [commons-scxml](https://commons.apache.org/proper/commons-scxml) | +| Apache Commons Signing | [commons-signing](https://github.com/apache/commons-signing) | [commons-signing](https://commons.apache.org/proper/commons-signing) | +| Apache Commons Skin | [commons-skin](https://github.com/apache/commons-skin) | [commons-skin](https://commons.apache.org/proper/commons-skin) | +| Apache Commons Statistics | [commons-statistics](https://github.com/apache/commons-statistics) | [commons-statistics](https://commons.apache.org/proper/commons-statistics) | +| Apache Commons Testing | [commons-testing](https://github.com/apache/commons-testing) | [commons-testing](https://commons.apache.org/proper/commons-testing) | +| Apache Commons Text | [commons-text](https://github.com/apache/commons-text) | [commons-text](https://commons.apache.org/proper/commons-text) | +| Apache Commons Validator | [commons-validator](https://github.com/apache/commons-validator) | [commons-validator](https://commons.apache.org/proper/commons-validator) | +| Apache Commons VFS | [commons-vfs](https://github.com/apache/commons-vfs) | [commons-vfs](https://commons.apache.org/proper/commons-vfs) | +| Apache Commons Weaver | [commons-weaver](https://github.com/apache/commons-weaver) | [commons-weaver](https://commons.apache.org/proper/commons-weaver) | diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index a65b9f9..26904da 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -1,73 +1,657 @@ - Apache Commons Parent 43 + Apache Commons Parent 56 RELEASE NOTES -The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 43 +The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 56. The Apache Commons Parent POM provides common settings for all Apache Commons components. -Updates plugins and generally requires Java 7. +Version 56: Maintenance and update dependencies Changes in this version include: +Fixed Bugs: +o Add Privacy link to site.xml + Changes: -o maven-compiler-plugin 3.6.1 -> 3.6.2. -o maven-compiler-plugin 3.6.2 -> 3.7.0. -o jacoco-maven-plugin 0.7.7.201606060606 -> 0.7.9. -o maven-javadoc-plugin 2.10.4 -> 3.0.0 (Java 9 compatibility.) -o Update japicmp 0.9.3 -> 0.10.0. -o animal-sniffer-maven-plugin 1.15 -> 1.16. -o commons.findbugs.version 3.0.3 -> 3.0.5 (requires Java 7.) -o commons.clirr.version 2.7 -> 2.8. -o maven-surefire-plugin 2.19.1 -> 2.20.1. -o Add maven-failsafe-plugin 2.20.1 (to along with surefire.) -o felix:maven-bundle-plugin 3.0.1 -> 3.4.0 (requires Java 7. -o versions-maven-plugin 2.3 -> 2.5. -o japicmp-maven-plugin 0.10.0 -> 0.11.0. -o build-helper-maven-plugin 1.10 -> 3.0.0 (requires Maven 3 and Java 7.) -o wagon-ssh 2.10 -> 3.0.0. -o maven-site-plugin 3.6 -> 3.7 (fixes Java 9 builds; for migrating from 3.4 to 3.5.1, see https://maven.apache.org/components/plugins/maven-site-plugin/migrate.html) +o Bump apache from 28 to 29 #182. Thanks to Dependabot. +o Bump versions-maven-plugin from 2.13.0 to 2.14.2 #181, #187, #191. Thanks to Dependabot. +o Bump wagon-ssh from 3.5.2 to 3.5.3 #190. Thanks to Dependabot. -Historical list of changes: http://commons.apache.org/commons-parent-pom.htmlchanges-report.html +Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html For complete information on Apache Commons Parent, including instructions on how to submit bug reports, patches, or suggestions for improvement, see the Apache Apache Commons Parent website: -http://commons.apache.org/commons-parent-pom.html +https://commons.apache.org/proper/commons-parent/ ----------------------------------------------------------------------------- - Apache Commons Parent 42 + Apache Commons Parent 55 RELEASE NOTES -The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 42 +The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 55. + +The Apache Commons Parent POM provides common settings for all Apache Commons components. + +Version 55: Maintenance and update dependencies + +Changes in this version include: + +Changes: +o Make CycloneDX work better with multi-module projects. Thanks to Gary Gregory. +o New interface methods must be default methods to maintain BC. Thanks to Gary Gregory. +o Add property commons.javadoc19.java.link. Thanks to Gary Gregory. +o Bump actions/cache from 3.0.8 to 3.0.11 #152, #155, #160. Thanks to Dependabot. +o Bump actions/checkout from 3.0.2 to 3.1.0 #154. Thanks to Dependabot. +o Bump actions/setup-java from 3.5.1 to 3.6.0 #164. Thanks to Dependabot. +o Bump actions/upload-artifact from 3.1.0 to 3.1.1 #165 Thanks to Dependabot. +o Bump github/codeql-action from 2.1.27 to 2.1.35 #162, #166, #168, #178. Thanks to Dependabot. +o Bump github/codeql-action from 2.1.23 to 2.1.31 #148, #150, #156, #172. Thanks to Gary Gregory, Dependabot. +o Bump ossf/scorecard-action from 1.1.2 to 2.0.6 #163. Thanks to Gary Gregory, Dependabot. +o Bump apache from 27 to 28 #175 Thanks to Dependabot. +o Bump JUnit from 5.9.0 to 5.9.1. Thanks to Gary Gregory. +o Bump spdx-maven-plugin from 0.5.5 to 0.6.3. Version 0.6.2 fixes NPE https://github.com/spdx/spdx-maven-plugin/issues/53 #159 Thanks to Gary Gregory, Dependabot. +o Bump pmd from 6.49.0 to 6.52.0. Thanks to Gary Gregory. +o Bump Apache Commons BCEL from 6.5.0 to 6.7.0. Thanks to Gary Gregory. +o Bump cyclonedx-maven-plugin from 2.7.1 to 2.7.3 #157, #173. Thanks to Dependabot. +o Bump spotbugs-maven-plugin from 4.7.2.0 to 4.7.3.0 #158, #170, #171. Thanks to Dependabot. +o Bump spotbugs from 4.7.2 to 4.7.3 #161. Thanks to Dependabot. +o Bump versions-maven-plugin from 2.12.0 to 2.13.0 #167. Thanks to Dependabot. +o Bump japicmp-maven-plugin from 0.16.0 to 0.17.1 #174. Thanks to Dependabot. +o Bump biz.aQute.bndlib from 6.3.1 to 6.4.0 #176. Thanks to Dependabot. + + +Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html + +For complete information on Apache Commons Parent, including instructions on how to submit bug reports, +patches, or suggestions for improvement, see the Apache Apache Commons Parent website: + +https://commons.apache.org/proper/commons-parent/ + +----------------------------------------------------------------------------- + + Apache Commons Parent 54 + RELEASE NOTES + +The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 54. + +The Apache Commons Parent POM provides common settings for all Apache Commons components. + +Version 54: SBOMs, drop JDepend, replace FindBugs with SpotBugs, dependency bumps. + +Changes in this version include: + +New features: +o Add .vscode/* to RAT excludes. +o Add property commons.javadoc18.java.link. Thanks to Dependabot. +o Add JUnit BOM to dependency management. +o Add CycloneDX SBOM generation #122. Thanks to Steve Springett. +o Add SPDX SBOM generation. Thanks to Gary Gregory. + +Changes: +o Bump actions/cache from 3 to 3.0.8, #118. Thanks to Gary Gregory, Dependabot. +o Bump actions/checkout from 3 to 3.0.2. Thanks to Gary Gregory. +o Bump actions/setup-java from 2 to 3. Thanks to Gary Gregory. +o Bump apache from 24 to 27 #112, #127. Thanks to Dependabot. +o Bump build-helper-maven-plugin from 3.2.0 to 3.3.0 #105. Thanks to Dependabot. +o Bump jacoco-maven-plugin from 0.8.7 to 0.8.8. Thanks to Gary Gregory. +o Bump spotbugs from 4.5.3 to 4.7.2 #120, #143. Thanks to Gary Gregory, Dependabot. +o Bump spotbugs-maven-plugin from 4.5.3.0 to 4.7.2.0, #129, #142. Thanks to Gary Gregory, Dependabot. +o Bump maven-project-info-reports-plugin from 3.2.2 to 3.4.1 #107, #128. Thanks to Dependabot. +o Bump maven-site-plugin from 3.11.0 to 3.12.1 #108, #132. Fix [WARNING] An issue has occurred with apache-rat-plugin:0.14:rat report, skipping LinkageError org.apache.rat.mp.RatReportMojo.generate(Lorg/codehaus/doxia/sink/Sink;Ljava/util/Locale;)V, Thanks to Dependabot. +o Bump maven-bundle-plugin from 5.1.4 to 5.1.8, #111, #126, #133. Thanks to Gary Gregory, Dependabot. +o Bump net.sourceforge.pmd:pmd-* from 6.44.0 to 6.49.0, #138. Thanks to Gary Gregory, Dependabot. +o Bump maven-jxr-plugin from 3.1.1 to 3.3.0 #110, #136. Thanks to Dependabot. +o Bump maven-javadoc-plugin from 3.3.2 to 3.4.1 #114. Thanks to Dependabot, Gary Gregory. +o Bump apache-rat from 0.13 to 0.15. Thanks to Gary Gregory. +o Bump biz.aQute.bndlib from 6.2.0 to 6.3.1. Thanks to Gary Gregory. +o Bump maven-pmd-plugin from 3.16.0 to 3.19.0 #141. Thanks to Gary Gregory, Dependabot. +o Bump maven-enforcer-plugin from 3.0.0 to 3.1.0. Thanks to Gary Gregory. +o Bump org.apache.maven.wagon:wagon-ssh 3.5.1 to 3.5.2. Thanks to Gary Gregory. +o Bump maven-assembly-plugin from 3.3.0 to 3.4.2 #123. Thanks to Dependabot, Gary Gregory. +o Bump Surefire 2.22.2 to 3.0.0-M7. Thanks to Gary Gregory. +o Bump Failsafe 2.22.2 to 3.0.0-M7. Thanks to Gary Gregory. +o Bump animal-sniffer-maven-plugin from 1.21 to 1.22. Thanks to Gary Gregory. +o Bump maven-checkstyle-plugin from 3.1.2 to 3.2.0. Thanks to Gary Gregory. +o Bump japicmp-maven-plugin from 0.15.7 to 0.16.0 #140. Thanks to Gary Gregory. +o Bump versions-maven-plugin from 2.11.0 to 2.12.0 #144. Thanks to Dependabot. +o Bump maven-jar-plugin from 3.2.2 to 3.3.0 #147. Thanks to Dependabot. + +Removed: +o Remove org.codehaus.mojo:jdepend-maven-plugin 2.0; it does not work with current versions of RAT and site plugins. Thanks to Gary Gregory. +o Remove FindBugs properties, use SpotBugs instead. Thanks to Gary Gregory. +o Remove Maven Clirr plugin in favor of JApiCmp. Thanks to Gary Gregory. + +Historical list of changes: https://commons.apache.org/commons-parent-pom.htmlchanges-report.html + +For complete information on Apache Commons Parent, including instructions on how to submit bug reports, +patches, or suggestions for improvement, see the Apache Apache Commons Parent website: + +https://commons.apache.org/commons-parent-pom.html + +----------------------------------------------------------------------------- + + Apache Commons Parent 53 + RELEASE NOTES + +The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 53 + +The Apache Commons Parent POM provides common settings for all Apache Commons components. + +WARNING: checkstyle version has been updated; there are breaking changes which may require updates to checkstyle.xml files + +Changes in this version include: + +New features: +o Add .asf.yaml to RAT excludes. +o Add versions-maven-plugin run for this build. +o Add maven-checkstyle-plugin to pluginManagement. +o Allow Maven PMD plugin to override PMD implementation jars with property "commons.pmd-impl.version". +o Add property commons.javadoc16.java.link. +o Add and use property commons.enforcer-plugin.version. +o Add SpotBugs to plugin management section. +o Add and use property commons.buildnumber-plugin.version. +o Add property commons.javadoc17.java.link. + +Fixed Bugs: +o Use HTTPS for Javadoc links to Oracle. +o Use HTTPS for most links to Apache. +o Rename property biz.aQute.bndlib.version -> commons.biz.aQute.bndlib.version. + +Changes: +o Bump versions-maven-plugin from 2.7 to 2.10.0 #97, #101. Thanks to Dependabot, Gary Gregory. +o Bump maven-project-info-reports-plugin from 3.1.0 to 3.2.2 #19, #41, #89, #103. Thanks to Dependabot. +o Bump Jacoco from 0.8.5 to 0.8.7, #42. +o Bump actions/setup-java from v1.4.0 to v2, #18, #22. Thanks to Dependabot, Gary Gregory. +o Bump commons-build-plugin 1.11 -> 1.12 +o Bump biz.aQute.bndlib from 5.1.2 to 6.2.0, #23, #31, #64, #76. Thanks to Dependabot. +o Bump actions/checkout from 2.3.1 to 3, #15, #21, #25, #66, #71, #79. Thanks to Dependabot. +o Bump com.github.siom79.japicmp:japicmp-maven-plugin 0.14.3 -> 0.15.7, #34, #68, #93. Thanks to Gary Gregory, Depe +ndabot. +o Bump org.apache.maven.wagon:wagon-ssh 3.4.0 -> 3.4.3, #32 +o Bump maven-pmd-plugin 3.13.0 -> 3.16.0 #91. Thanks to Gary Gregory, Dependabot. +o Bump commons.checkstyle-plugin.version 3.1.1 -> 3.1.2. +o Bump actions/cache from 2 to 3 #29, #38, #44, #102. Thanks to Dependabot. +o Bump animal-sniffer-maven-plugin from 1.19 to 1.21 #30. Thanks to Dependabot, Gary Gregory. +o Bump com.puppycrawl.tools:checkstyle from 8.40 to 9.0.2 #33, #45, #48, #54, #55, #38, #77. Thanks to Dependabot, +Gary Gregory. +o Bump maven-bundle-plugin from 5.1.1 to 5.1.4 #35, #82, #87. Thanks to Dependabot. +o Bump maven-jxr-plugin from 3.0.0 to 3.1.1 #39. Thanks to Dependabot. +o Bump maven-javadoc-plugin from 3.2.0 to 3.3.2 #43, #59, #96. Thanks to Dependabot. +o Bump commons.pmd-impl.version from 6.29.0 to 6.44.0 #46, #47, #53, #57, #62, #80, #90, #99. Thanks to Dependabot, + Gary Gregory. +o Bump spotbugs-maven-plugin from 4.0.4 to 4.5.3.0 #50, #60, #83, #100. Thanks to Dependabot. +o Bump spotbugs from 4.0.6 to 4.5.3. +o Bump maven-enforcer-plugin from 3.0.0-M3 to 3.0.0 #52. Thanks to Dependabot. +o Bump buildnumber-maven-plugin from 1.4 to 3.0.0 #81. Thanks to Dependabot. +o Bump maven-site-plugin from 3.9.1 to 3.11.0 #84, #98. Thanks to Dependabot. +o Bump wagon-ssh from 3.4.3 to 3.5.1 #85. Thanks to Dependabot. +o Bump checkstyle from 9.2 to 9.3 #86. Thanks to Dependabot, Gary Gregory. +o Bump maven-compiler-plugin from 3.8.1 to 3.10.1 #88. Thanks to Dependabot, Gary Gregory. +o Bump maven-jar-plugin from 3.2.0 to 3.2.2 #92. Thanks to Dependabot. +o Bump commons-release-plugin from 1.7 to 1.8.0. Thanks to Gary Gregory. + + +Historical list of changes: https://commons.apache.org/commons-parent-pom.htmlchanges-report.html + +For complete information on Apache Commons Parent, including instructions on how to submit bug reports, +patches, or suggestions for improvement, see the Apache Apache Commons Parent website: + +https://commons.apache.org/commons-parent-pom.html + +----------------------------------------------------------------------------- + + Apache Commons Parent 52 + RELEASE NOTES + +The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 52. + +The Apache Commons Parent POM provides common settings for all Apache Commons components. + +Add support for Java 15. + +Changes in this version include: + +New features: +o Align Javadoc version with java override profile + +Changes: +o Update maven-site-plugin version 3.8.2 -> 3.9.1. +o Update biz.aQute.bndlib version 5.1.0 -> 5.1.2, Java 15 support. +o Update maven-bundle-plugin from 4.2.1 to 5.1.1, Java 15 support. +o Update animal-sniffer-maven-plugin from 1.18 to 1.19. +o Update build-helper-maven-plugin from 3.1.0 to 3.2.0. +o Update commons.checkstyle-plugin.version from 3.1.0 to 3.1.1. + + +Historical list of changes: https://commons.apache.org/commons-parent-pom.htmlchanges-report.html + +For complete information on Apache Commons Parent, including instructions on how to submit bug reports, +patches, or suggestions for improvement, see the Apache Apache Commons Parent website: + +https://commons.apache.org/commons-parent-pom.html + +Have fun! +-Apache Commons Parent team + +----------------------------------------------------------------------------- + + Apache Commons Parent 51 + RELEASE NOTES + +The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 51. + +The Apache Commons Parent POM provides common settings for all Apache Commons components. + +Fix incompatibilty issues with Java 7 +Add support for Java 13. +Update various plugin versions. + +Changes in this version include: + +New features: +o Allow override of changes.announcementFile/announcementDirectory + +Fixed Bugs: +o Allow Java7 builds: commons.animal-sniffer.version=1.17; biz.aQute.bndlib.version=3.5.0 +o PR#5: change to for maven javadoc plugin. + +Changes: +o JApiCmp 0.14.1 -> 0.14.3. +o maven-enforcer-plugin 3.0.0-M2 -> 3.0.0-M3. +o maven-source-plugin 3.2.0 -> 3.2.1. +o commons.spotbugs.version 3.1.6 -> 3.1.12.2. +o org.apache:apache 21 -> 23. +o maven-javadoc-plugin 3.1.1 -> 3.2.0. +o commons.pmd.version 3.12.0 -> 3.13.0. +o Fix https://github.com/bndtools/bnd/issues/3903 seen with Commons CSV. +o commons.project-info.version 3.0.0 -> 3.1.0 +o Add support for Java 13 +o Support NOTICE and LICENSE alongside .txt versions +o commons.wagon-ssh.version 3.0.0 -> 3.1.0 +o biz.aQute.bndlib.version 5.0.1 => 5.1.0 +o bcel version 6.4.1 => 6.5.0 +o maven pre-requisite 3.0.5 => 3.5.0 +o commons.build-helper.version 3.0.0 => 3.1.0 + + +Historical list of changes: https://commons.apache.org/commons-parent-pom.htmlchanges-report.html + +For complete information on Apache Commons Parent, including instructions on how to submit bug reports, +patches, or suggestions for improvement, see the Apache Apache Commons Parent website: + +https://commons.apache.org/commons-parent-pom.html + +----------------------------------------------------------------------------- + + Apache Commons Parent 50 + RELEASE NOTES + +The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 50. + +The Apache Commons Parent POM provides common settings for all Apache Commons components. + +Notes on site generation in 50 +------------------------------ + +This release updates commons-skin which is used by projects to render the site using a +'Commons' style. It restores the correct copyright notice to the footer of site pages. +The new skin allows a project to add custom XHTML to the tag of their site +descriptor (site.xml). + + +Changes in this version include: + +Changes: +o site.xml: Removed custom head element. PrettyPrint functionality is loaded by commons-skin-4.2. +o site.xml: commons-skin 4.1 -> 4.2 +o site.xml: Removed CDATA tag around the custom footer element +o commons.wagon-ssh.version 3.3.3 -> 3.3.4 +o commons.assembly-plugin.version 3.1.1 -> 3.2.0 +o commons.source-plugin.version 3.1.0 -> 3.2.0 +o commons.jar-plugin.version 3.1.2 -> 3.2.0 +o jacoco-maven-plugin 0.8.4 -> 0.8.5 +o Move japicmp reporting section to the profile for opt-in behavior. Remove japicmp.skip flag used to skip the report. +o Disable jacoco non-aggregate reports. +o Update site build from Apache Commons BCEL 6.3.1 to 6.4.1. + + +Historical list of changes: https://commons.apache.org/commons-parent-pom.htmlchanges-report.html + +For complete information on Apache Commons Parent, including instructions on how to submit bug reports, +patches, or suggestions for improvement, see the Apache Apache Commons Parent website: + +https://commons.apache.org/commons-parent-pom.html + +Have fun! +-Apache Commons Parent team + +----------------------------------------------------------------------------- + + Apache Commons Parent 49 + RELEASE NOTES + +The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 49. The Apache Commons Parent POM provides common settings for all Apache Commons components. Changes in this version include: New features: -o new profiles to run coveralls coverage - reports via Travis using Jacoco or Cobertura respectively +o Add commons.pmd.version +o Add commons.checkstyle-plugin.version +o Add property commons.release.4.desc (see Apache Commons Pool.) +o Add property commons.release.4.binary.suffix (see Apache Commons Pool.) + +Fixed Bugs: +o Downdate felix plugin to work on Java 7 +o commons.scmPubUrl was not built properly, e.g. using 'pool' instead of 'commons-pool' Changes: -o maven-site-plugin 3.4 -> 3.6 (for migrating from 3.4 to 3.5.1, see https://maven.apache.org/components/plugins/maven-site-plugin/migrate.html) -o jacoco-maven-plugin : 0.7.6.201602180812 -> 0.7.7.201606060606 -o commons-build-plugin : 1.6 -> 1.7 -o maven-changes-plugin : 2.12 -> 2.12.1 -o Update japicmp: 0.8.0 -> 0.9.1 -o maven-compiler-plugin : 3.5.1 -> 3.6.0 -o japicmp plugin no longer fail on "mvn site" (it requires target/*jar), use "mvn package site -Pjapicmp" to include its report -o japicmp-maven-plugin : 0.8.0 -> 0.9.3 -o new property - commons.japicmp.breakBuildOnBinaryIncompatibleModifications - controls the breakBuildOnBinaryIncompatibleModifications - setting of japicmp +o maven-site-plugin 3.7.1 -> 3.8.2 +o commons.felix.version=maven-bundle-plugin 4.2.0 -> 4.2.1 +o commons-build-plugin 1.10 -> 1.11 +o Update maven-project-info-reports-plugin's Apache Commons BCEL from 6.3 to 6.3.1. +o japicmp-maven-plugin 0.13.0 -> 0.13.1 +o maven-bundle-plugin 4.1.0 -> 4.2.0 +o japicmp-maven-plugin 0.13.1 -> 0.14.0 +o japicmp-maven-plugin should not break builds on source incompatible changes by default. +o commons.compiler.version 3.8.0 ->3.8.1. +o Add properties commons.javadoc6.java.link through commons.javadoc12.java.link +o Add properties commons.javadoc.javaee5.link through commons.javadoc.javaee7.link +o Maven Surefire and Failsafe plugins 2.22.1 -> 2.22.2 +o commons.jar-plugin.version 3.1.1 -> 3.1.2 +o Add profile java-1.12 +o maven-source-plugin 3.0.1 -> 3.1.0 +o japicmp-maven-plugin 0.14.0 -> 0.14.1 +o commons.wagon-ssh.version 3.3.2 -> 3.3.3 +o commons.javadoc.version 3.1.0 -> 3.1.1 +o Add missing source config for Javadoc plugin. +o Adding Java 8 default methods should not break binary compatibility. +o Set Javadoc source option to Maven compiler source setting. +o jacoco-maven-plugin 0.8.3 -> 0.8.4. +o commons-release-plugin 1.6 -> 1.7. +o animal-sniffer-maven-plugin 1.17 -> 1.18. -Historical list of changes: http://commons.apache.org/commons-parent-pom.html +Historical list of changes: https://commons.apache.org/commons-parent-pom.htmlchanges-report.html For complete information on Apache Commons Parent, including instructions on how to submit bug reports, patches, or suggestions for improvement, see the Apache Apache Commons Parent website: -http://commons.apache.org/commons-parent-pom.html +https://commons.apache.org/commons-parent-pom.html + +----------------------------------------------------------------------------- + + Apache Commons Parent 48 + RELEASE NOTES + +The Apache Commons Parent team is pleased to announce the commons-parent-48 release! + +The Apache Commons Parent POM provides common settings for all Apache Commons components. + +Changes in this version include: + + +Fixed Bugs: +o Revert revert change in commons.scmPubUrl in Parent 47, use commons.packageId for osgi +o Revert change in commons.scmPubUrl in Parent 47 Issue: COMMONSSITE-124. +o re-enabled japicmp and introduced japicmp.skip property that + controls whether japicmp reports are run. It is disabled by + default and enabled via a special profile enabled by the + presence of the file src/site/resources/profile.japicmp + - org.apache.felix:maven-bundle-plugin 3.5.0 -> 3.5.1 + +Changes: +o Run "apache-rat:check" as part of "mvn validate" +o commons.build-plugin.version: 1.9 -> 1.10 +o commons.release-plugin.version: 1.5 -> 1.6 +o commons.spotbugs.version: 3.1.3 -> 3.1.6 +o japicmp-maven-plugin: 0.12.0 -> 0.13.0 +o Update parent from org.apache:apache 19 to 20. +o maven-compiler-plugin 3.7.0 -> 3.8.0 +o org.apache.felix:maven-bundle-plugin 3.5.0 -> 3.5.1 +o org.jacoco:jacoco-maven-plugin 0.8.1 -> 0.8.3 (Java 11) +o org.apache.maven.wagon:wagon-ssh 3.1.0 -> 3.2.0 +o maven-surefire-plugin 2.22.0 -> 2.22.1 +o maven-surefire-report-plugin 2.22.0 -> 2.22.1 +o maven-failsafe-plugin 2.22.0 -> 2.22.1 +o versions-maven-plugin 2.5 -> 2.7 +o org.apache.felix:maven-bundle-plugin 3.5.1 -> 4.1.0 +o maven-jxr-plugin 2.5 -> 3.0.0 +o org.apache.rat:apache-rat-plugin 0.12 -> 0.13 +o commons.wagon-ssh.version 3.2.0 -> 3.3.1 +o maven-assembly-plugin 3.1.0 -> 3.1.1 +o commons.jar-plugin.version 3.1.0 -> 3.1.1 +o commons.animal-sniffer.version 1.16 -> 1.17 +o org.apache.bcel:bcel 6.2 -> 6.3 +o commons-release-plugin 1.4 -> 1.5 +o org.apache.maven.wagon:wagon-ssh 3.3.1 -> 3.3.2 +o org.apache.maven.plugins:maven-javadoc-plugin 3.0.1 -> 3.1.0 + + +Historical list of changes: https://commons.apache.org/commons-parent-pom.html + +For complete information on Apache Commons Parent, including instructions on how to submit bug reports, +patches, or suggestions for improvement, see the Apache Apache Commons Parent website: + +https://commons.apache.org/commons-parent-pom.html + +----------------------------------------------------------------------------- + + Apache Commons Parent 47 + RELEASE NOTES + + +The Apache Commons Parent team is pleased to announce the commons-parent-47 release! + +The Apache Commons Parent POM provides common settings for all Apache Commons components. + +Changes in this version include: + +New features: +o New properties: commons.distSvnStagingUrl, commons.releaseManagerName, commons.releaseManagerKey + + +Changes: +o Set the version of Apache Commons BCEL used by maven-project-info-reports-plugin to avoid + "org.apache.bcel.classfile.ClassFormatException: Invalid byte tag in constant pool: 19" +o Allows JApiCmp's ignoreMissingClasses parameter to be easily overridable with the property commons.japicmp.ignoreMissingClasses. +o japicmp-maven-plugin 0.11.1 -> 0.12.0 +o maven-javadoc-plugin 3.0.0 -> 3.0.1 (Java 10 compatibility) +o maven-site-plugin 3.7.0 -> 3.7.1. +o org.apache.maven.wagon:wagon-ssh 3.0.0 -> 3.1.0 +o maven-surefire-report-plugin 2.21.0 -> 2.22.0 +o maven-enforcer-plugin 3.0.0-M1 -> 3.0.0-M2 +o commons-release-plugin 1.2 -> 1.3 +o commons-build-plugin 1.8 -> 1.9 +o maven-surefire-plugin 2.21.0 -> 2.22.0 +o maven-project-info-reports-plugin 2.9 -> 3.0.0 + + +Historical list of changes: https://commons.apache.org/commons-parent-pom.html + +For complete information on Apache Commons Parent, including instructions on how to submit bug reports, +patches, or suggestions for improvement, see the Apache Apache Commons Parent website: + +https://commons.apache.org/commons-parent-pom.html + +----------------------------------------------------------------------------- + + Apache Commons Parent 46 + RELEASE NOTES + +The Apache Commons Parent team is pleased to announce the commons-parent-46 release! + +The Apache Commons Parent POM provides common settings for all Apache Commons components. + +Updates plugins and generally requires Java 7. + +Plugin updates + +Notes on japicmp usage in 46 +---------------------------- +For japicmp to work when running 'mvn site', we must first run package +because japicmp needs a built artifact to which to compare the previous +version. Thus, we run 'mvn package site' to get an appropriate japicmp +report. Further, during project build we see the following warning and +stacktrace during site generation: + +[debug] No packaging support defined, no filtering +[info] Skipping execution because packaging of this module is 'pom'. +[debug] Searching for versions in versionRange: (,46) +[info] Unable to find a previous version of the project in the repository. +[warn] No new version specified and file '/..../commons-parent/pom.xml' of artifact could not be opened as jar archive: error in opening zip file + +java.util.zip.ZipException: error in opening zip file + at java.util.zip.ZipFile.open(Native Method) + at java.util.zip.ZipFile.(ZipFile.java:225) + at java.util.zip.ZipFile.(ZipFile.java:155) + at java.util.jar.JarFile.(JarFile.java:166) + at java.util.jar.JarFile.(JarFile.java:130) + at japicmp.maven.JApiCmpMojo.populateArchivesListsFromParameters(JApiCmpMojo.java:345) + at japicmp.maven.JApiCmpMojo.getOptions(JApiCmpMojo.java:708) + at japicmp.maven.JApiCmpReport.getOptions(JApiCmpReport.java:108) + at japicmp.maven.JApiCmpReport.getDescription(JApiCmpReport.java:127) + at org.apache.maven.plugins.site.render.CategorySummaryDocumentRenderer.renderDocument(CategorySummaryDocumentRenderer.java:155) + + + + +Changes in this version include: + +New features: +o Add java-1.10 profile +o Add java-1.11 profile + + +Changes: +o japicmp-maven-plugin 0.11.0 -> 0.11.1 +o maven-surefire-report-plugin 2.20.1 -> 2.21.0 +o jacoco-maven-plugin 0.8.0 -> 0.8.1 +o commons-build-plugin 1.7 -> 1.8 +o commons-release-plugin 1.1 -> 1.2 +o japicmp-maven-plugin: oldVersionPattern=\d+\.\d+\.\d* +o maven-assembly-plugin: 3.0.0 -> 3.1.0 + +Removed: +o Prerequisites tag; should only be used for maven-plugins, using maven-enforcer-plugin instead. + + +Historical list of changes: https://commons.apache.org/commons-parent-pom.html + +For complete information on Apache Commons Parent, including instructions on how to submit bug reports, +patches, or suggestions for improvement, see the Apache Apache Commons Parent website: + +https://commons.apache.org/commons-parent-pom.html + +----------------------------------------------------------------------------- + + Apache Commons Parent 45 + RELEASE NOTES + +The Apache Commons Parent team is pleased to announce the commons-parent-45 release! + +The Apache Commons Parent POM provides common settings for all Apache Commons components. + +Updates plugins and generally requires Java 7. + + +Changes in this version include: + + +Changes: +o Rearranging plugin order in -Prelease, removing commons-release-plugin from build>pluginManagement + + +Historical list of changes: https://commons.apache.org/commons-parent-pom.html + +For complete information on Apache Commons Parent, including instructions on how to submit bug reports, +patches, or suggestions for improvement, see the Apache Apache Commons Parent website: + +https://commons.apache.org/commons-parent-pom.html + +----------------------------------------------------------------------------- + + Apache Commons Parent 44 + RELEASE NOTES + +The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 44. + +The Apache Commons Parent POM provides common settings for all Apache Commons components. + +Updates plugins and generally requires Java 7. + +Notes on Building version 44. +----------------------------- +When building, because of an issue with japicmp, we have an erroneous non-failing stacktrace +that occurs. Specifically, we see: + +[warn] No new version specified and file './commons-parent/pom.xml' of artifact could not be opened as + jar archive: error in opening zip file +java.util.zip.ZipException: error in opening zip file + +mainly caused by an error in +japicmp.maven.JApiCmpMojo.populateArchivesListsFromParameters(JApiCmpMojo.java:341). + +We have asked for this to be addressed in the github issue: https://github.com/siom79/japicmp/issues/195 + +Changes in this version include: +-------------------------------- +New features: +o new profile module-name to add 'Automatic-Module-Name' entry to the manifest +o COMMONSSITE-105: Add commons-release-plugin version 1.1 +o COMMONSSITE-106: Add spotbugs-maven-plugin version 3.1.3 + + +Changes: +o felix:maven-bundle-plugin 3.4.0 -> 3.5.0. +o build artifacts -test.jar, -sources.jar and -test-sources.jar always, not only at release time +o maven-enforcer-plugin set version to 3.0.0-M1 and update Maven requirement from 3.0.0 to 3.0.5 (the latest 3.0.x.) +o jacoco-maven-plugin 0.7.9 -> 0.8.0. +o Fix japicmp config: add to reporting section and define ignoreMissingNewVersion explicitly +o org.apache:apache 18 -> 19 +o maven-surefire-plugin 2.20.1 -> 2.21.0 +o maven-failsafe-plugin 2.20.1 -> 2.21.0 + + +Historical list of changes: https://commons.apache.org/commons-parent-pom.html + +For complete information on Apache Commons Parent, including instructions on how to submit bug reports, +patches, or suggestions for improvement, see the Apache Apache Commons Parent website: + +https://commons.apache.org/commons-parent-pom.html + +----------------------------------------------------------------------------- + + Apache Commons Parent 43 + RELEASE NOTES + +The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 43. + +The Apache Commons Parent POM provides common settings for all Apache Commons components. + +TBD + +Changes in this version include: + +Changes: +o site.xml: commons-skin 4.1 -> 4.2 +o site.xml: Removed CDATA tag around the custom footer element +o commons.wagon-ssh.version 3.3.3 -> 3.3.4 +o commons.assembly-plugin.version 3.1.1 -> 3.2.0 +o commons.source-plugin.version 3.1.0 -> 3.2.0 +o commons.jar-plugin.version 3.1.2 -> 3.2.0 +o jacoco-maven-plugin 0.8.4 -> 0.8.5 +o Move japicmp reporting section to the profile for opt-in behavior. Remove japicmp.skip flag used to skip the report. +o Disable jacoco non-aggregate reports. +o Update site build from Apache Commons BCEL 6.3.1 to 6.4.1. + + +Historical list of changes: https://commons.apache.org/commons-parent-pom.htmlchanges-report.html + +For complete information on Apache Commons Parent, including instructions on how to submit bug reports, +patches, or suggestions for improvement, see the Apache Apache Commons Parent website: + +https://commons.apache.org/commons-parent-pom.html diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..51943ba --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,17 @@ + +The Apache Commons security page is [https://commons.apache.org/security.html](https://commons.apache.org/security.html). diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index 9f1da77..0000000 --- a/debian/changelog +++ /dev/null @@ -1,5 +0,0 @@ -commons-parent (43-ok2) yangtze; urgency=medium - - * Build for openKylin. - - -- zhouganqing Fri, 18 Nov 2022 09:32:45 +0800 diff --git a/debian/compat b/debian/compat deleted file mode 100644 index b4de394..0000000 --- a/debian/compat +++ /dev/null @@ -1 +0,0 @@ -11 diff --git a/debian/control b/debian/control deleted file mode 100644 index e07896a..0000000 --- a/debian/control +++ /dev/null @@ -1,19 +0,0 @@ -Source: commons-parent -Section: java -Priority: optional -Maintainer: Openkylin Developers -Build-Depends: debhelper (>= 11), - default-jdk, - libapache-pom-java (>= 9), - maven-repo-helper (>= 1.7) -Standards-Version: 4.1.3 -Vcs-Git: https://gitee.com/openkylin/commons-parent.git -Vcs-Browser: https://gitee.com/openkylin/commons-parent.git -Homepage: http://commons.apache.org - -Package: libcommons-parent-java -Architecture: all -Depends: libapache-pom-java (>= 9), ${misc:Depends} -Description: Maven metadata for Apache Commons project - This package contains the Maven metadata shared between all components of - the Apache Commons project. diff --git a/debian/copyright b/debian/copyright deleted file mode 100644 index 25ec335..0000000 --- a/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: Apache Commons Parent POM -Source: http://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk/ - -Files: * -Copyright: 2006-2015, The Apache Software Foundation -License: Apache-2.0 - -Files: debian/* -Copyright: 2010, Ludovic Claude -License: Apache-2.0 - -License: Apache-2.0 - On Debian GNU/Linux system you can find the complete text of the - Apache-2.0 license in '/usr/share/common-licenses/Apache-2.0' diff --git a/debian/docs b/debian/docs deleted file mode 100644 index d89f79f..0000000 --- a/debian/docs +++ /dev/null @@ -1 +0,0 @@ -NOTICE.txt diff --git a/debian/libcommons-parent-java.poms b/debian/libcommons-parent-java.poms deleted file mode 100644 index 7c4918e..0000000 --- a/debian/libcommons-parent-java.poms +++ /dev/null @@ -1,27 +0,0 @@ -# List of POM files for the package -# Format of this file is: -# [option]* -# where option can be: -# --ignore: ignore this POM or -# --no-parent: remove the tag from the POM -# --package=: an alternative package to use when installing this POM -# and its artifact -# --has-package-version: to indicate that the original version of the POM is the same as the upstream part -# of the version for the package. -# --keep-elements=: a list of XML elements to keep in the POM -# during a clean operation with mh_cleanpom or mh_installpom -# --artifact=: path to the build artifact associated with this POM, -# it will be installed when using the command mh_install -# --java-lib: install the jar into /usr/share/java to comply with Debian -# packaging guidelines -# --usj-name=: name to use when installing the library in /usr/share/java -# --usj-version=: version to use when installing the library in /usr/share/java -# --no-usj-versionless: don't install the versionless link in /usr/share/java -# --dest-jar=: the destination for the real jar -# it will be installed with mh_install. -# --classifier=: Optional, the classifier for the jar. Empty by default. -# --ignore-pom: don't install the POM with mh_install or mh_installpoms. To use with POM files that are created -# temporarily for certain artifacts such as Javadoc jars. -# -pom.xml --has-package-version --site-xml=src/site/site.xml --keep-elements=build - diff --git a/debian/maven.ignoreRules b/debian/maven.ignoreRules deleted file mode 100644 index 296255f..0000000 --- a/debian/maven.ignoreRules +++ /dev/null @@ -1,36 +0,0 @@ -# Maven ignore rules - ignore some Maven dependencies and plugins -# Format of this file is: -# [group] [artifact] [type] [version] [classifier] [scope] -# where each element can be either -# - the exact string, for example org.apache for the group, or 3.1 -# for the version. In this case, the element is simply matched -# and left as it is -# - * (the star character, alone). In this case, anything will -# match and be left as it is. For example, using * on the -# position of the artifact field will match any artifact id -# All elements much match before a rule can be applied -# Example rule: match jar with groupid= junit, artifactid= junit -# and version starting with 3., this dependency is then removed -# from the POM -# junit junit jar s/3\\..*/3.x/ - -org.apache.commons commons-build-plugin -org.apache.maven.plugins maven-antrun-plugin -org.apache.maven.plugins maven-assembly-plugin -org.apache.maven.plugins maven-deploy-plugin -org.apache.maven.plugins maven-enforcer-plugin -org.apache.maven.plugins maven-gpg-plugin -org.apache.maven.plugins maven-install-plugin -org.apache.maven.plugins maven-release-plugin -org.apache.maven.plugins maven-remote-resources-plugin -org.apache.maven.plugins maven-scm-publish-plugin -org.apache.maven.plugins maven-site-plugin -org.apache.maven.plugins maven-source-plugin -org.apache.maven.plugins maven-failsafe-plugin -org.apache.rat apache-rat-plugin -org.codehaus.mojo build-helper-maven-plugin -org.codehaus.mojo buildnumber-maven-plugin -org.codehaus.mojo clirr-maven-plugin -com.github.siom79.japicmp japicmp-maven-plugin -org.codehaus.mojo versions-maven-plugin -org.jacoco jacoco-maven-plugin diff --git a/debian/maven.rules b/debian/maven.rules deleted file mode 100644 index bebf071..0000000 --- a/debian/maven.rules +++ /dev/null @@ -1,20 +0,0 @@ -# Maven rules - transform Maven dependencies and plugins -# Format of this file is: -# [group] [artifact] [type] [version] [classifier] [scope] -# where each element can be either -# - the exact string, for example org.apache for the group, or 3.1 -# for the version. In this case, the element is simply matched -# and left as it is -# - * (the star character, alone). In this case, anything will -# match and be left as it is. For example, using * on the -# position of the artifact field will match any artifact id -# - a regular expression of the form s/match/replace/ -# in this case, elements that match are transformed using -# the regex rule. -# All elements much match before a rule can be applied -# Example rule: match jar with groupid= junit, artifactid= junit -# and version starting with 3., replacing the version with 3.x -# junit junit jar s/3\\..*/3.x/ - -org.apache apache pom s/.*/debian/ * * -org.apache.commons commons-parent pom s/.*/debian/ * * diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh deleted file mode 100755 index ca02793..0000000 --- a/debian/orig-tar.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh -e - -VERSION=$2 -TAR=../commons-parent_$VERSION.orig.tar.gz -DIR=commons-parent-$VERSION -TAG=$(echo "commons-parent-$VERSION" | sed -re's/~(alpha|beta|RC)/-\1/') - -svn export http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/${TAG}/ $DIR -GZIP=--best tar -c -z -f $TAR --exclude '*.jar' --exclude '*.class' $DIR -rm -rf $DIR ../$TAG - -# move to directory 'tarballs' -if [ -r .svn/deb-layout ]; then - . .svn/deb-layout - mv $TAR $origDir && echo "moved $TAR to $origDir" -fi diff --git a/debian/rules b/debian/rules deleted file mode 100755 index 28d3fd6..0000000 --- a/debian/rules +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/make -f - -DEB_SOURCE_PACKAGE := $(shell dpkg-parsechangelog | grep '^Source:' | cut -f 2 -d ' ') -DEB_UPSTREAM_VERSION := $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ' | cut -d: -f2- | sed 's/-[^-]*$$//') - -%: - dh $@ --with maven_repo_helper - -get-orig-source: - uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename diff --git a/debian/source/format b/debian/source/format deleted file mode 100644 index 89ae9db..0000000 --- a/debian/source/format +++ /dev/null @@ -1 +0,0 @@ -3.0 (native) diff --git a/debian/watch b/debian/watch deleted file mode 100644 index b8bd498..0000000 --- a/debian/watch +++ /dev/null @@ -1,4 +0,0 @@ -version=3 -opts="uversionmangle=s/-(alpha|beta|RC)/~$1/" \ - http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/ \ - commons-parent-(\d.*)/ debian debian/orig-tar.sh diff --git a/pom.xml b/pom.xml index cb62753..f1cd35c 100644 --- a/pom.xml +++ b/pom.xml @@ -17,122 +17,23 @@ limitations under the License. --> - + 4.0.0 org.apache apache - 18 + 29 org.apache.commons commons-parent + 56 pom - 43 Apache Commons Parent - http://commons.apache.org/commons-parent-pom.html The Apache Commons Parent POM provides common settings for all Apache Commons components. - - jira - http://issues.apache.org/jira/browse/COMMONSSITE - - - - - - - - - 3.0.5 - - - - jenkins - https://builds.apache.org/ - + + 2006 + https://commons.apache.org/proper/commons-parent/ - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk - scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk - http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk - + + + 3.3.9 + + + 2022-12-30T16:12:53Z + ${project.version} + RC1 + COMMONSSITE + + 55 + true + Gary Gregory + 86fdc7e2a11262cb + + + + + 1.3 + 1.3 + + + false + + + + + + 1.22 + + 1.0 + 3.4.2 + 3.3.0 + 1.12 + 2.12.1 + 3.2.0 + 9.3 + 2.7 + 3.10.1 + 4.3.0 + EpochMillis + 2.7.3 + 0.6.3 + 3.0.0-M7 + 5.1.8 + 0.8.8 + 0.17.1 + 3.3.0 + 3.4.1 + 3.3.0 + 3.19.0 + 6.52.0 + 3.4.1 + 0.15 + 1.8.0 + 1.1 + 3.1.0 + 3.0.0 + 6.4.0 + 5.9.1 + + + + 3.12.1 + 3.2.1 + 4.7.3.0 + 4.7.3 + 3.0.0-M7 + 3.0.0-M7 + 3.5.3 + + + ${project.artifactId}-${commons.release.version} + + -bin + ${project.artifactId}-${commons.release.2.version} + + -bin + ${project.artifactId}-${commons.release.3.version} + + -bin + + -bin + + + 1.00 + 0.90 + 0.95 + 0.85 + 0.85 + 0.90 + false + + + ${project.artifactId} + + + ${project.artifactId} + + + org.apache.commons.${commons.packageId} + org.apache.commons.*;version=${project.version};-noimport:=true + * + + + true + + + ${project.build.directory}/osgi/MANIFEST.MF + + + scp + + + iso-8859-1 + + ${commons.encoding} + + ${commons.encoding} + + ${commons.encoding} + + + https://docs.oracle.com/javase/6/docs/api/ + https://docs.oracle.com/javase/7/docs/api/ + https://docs.oracle.com/javase/8/docs/api/ + https://docs.oracle.com/javase/9/docs/api/ + https://docs.oracle.com/javase/10/docs/api/ + https://docs.oracle.com/en/java/javase/11/docs/api/ + https://docs.oracle.com/en/java/javase/12/docs/api/ + https://docs.oracle.com/en/java/javase/13/docs/api/ + https://docs.oracle.com/en/java/javase/14/docs/api/ + https://docs.oracle.com/en/java/javase/15/docs/api/ + https://docs.oracle.com/en/java/javase/16/docs/api/ + https://docs.oracle.com/en/java/javase/17/docs/api/ + https://docs.oracle.com/en/java/javase/18/docs/api/ + https://docs.oracle.com/en/java/javase/19/docs/api/ + + ${commons.javadoc7.java.link} + + https://docs.oracle.com/javaee/5/api/ + https://docs.oracle.com/javaee/6/api/ + https://docs.oracle.com/javaee/7/api/ + + ${commons.javadoc.javaee6.link} + + + yyyy-MM-dd HH:mm:ssZ + ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} + + + info + + + false + + + false + + 100 + + false + + + ${user.home}/commons-sites + + ${commons.componentid} + + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-${commons.componentid} + ${commons.site.cache}/${commons.site.path} + commons.site + + + true + false + false + + + scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} + + + ${user.name} + DEADBEEF + + https://analysis.apache.org/ + + + . + RELEASE-NOTES.txt + + + Components should normally override the default mailing list report by using the comnand + mvn commons-build:mail-page + This generates the file src/site/xdoc/mail-lists.xml which when processed will replace the PIR version. + --> Commons User List user-subscribe@commons.apache.org user-unsubscribe@commons.apache.org user@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-user/ + https://mail-archives.apache.org/mod_mbox/commons-user/ - http://markmail.org/list/org.apache.commons.users/ - http://old.nabble.com/Commons---User-f319.html - http://www.mail-archive.com/user@commons.apache.org/ - http://news.gmane.org/gmane.comp.jakarta.commons.user + https://markmail.org/list/org.apache.commons.users/ + https://www.mail-archive.com/user@commons.apache.org/ @@ -219,52 +363,81 @@ Version 39: dev-subscribe@commons.apache.org dev-unsubscribe@commons.apache.org dev@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-dev/ + https://mail-archives.apache.org/mod_mbox/commons-dev/ - http://markmail.org/list/org.apache.commons.dev/ - http://old.nabble.com/Commons---Dev-f317.html - http://www.mail-archive.com/dev@commons.apache.org/ - http://news.gmane.org/gmane.comp.jakarta.commons.devel + https://markmail.org/list/org.apache.commons.dev/ + https://www.mail-archive.com/dev@commons.apache.org/ Commons Issues List issues-subscribe@commons.apache.org issues-unsubscribe@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-issues/ + https://mail-archives.apache.org/mod_mbox/commons-issues/ - http://markmail.org/list/org.apache.commons.issues/ - http://old.nabble.com/Commons---Issues-f25499.html - http://www.mail-archive.com/issues@commons.apache.org/ + https://markmail.org/list/org.apache.commons.issues/ + https://www.mail-archive.com/issues@commons.apache.org/ Commons Commits List commits-subscribe@commons.apache.org commits-unsubscribe@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-commits/ + https://mail-archives.apache.org/mod_mbox/commons-commits/ - http://markmail.org/list/org.apache.commons.commits/ - http://www.mail-archive.com/commits@commons.apache.org/ + https://markmail.org/list/org.apache.commons.commits/ + https://www.mail-archive.com/commits@commons.apache.org/ Apache Announce List announce-subscribe@apache.org announce-unsubscribe@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ + https://mail-archives.apache.org/mod_mbox/www-announce/ - http://markmail.org/list/org.apache.announce/ - http://old.nabble.com/Apache-News-and-Announce-f109.html - http://www.mail-archive.com/announce@apache.org/ - http://news.gmane.org/gmane.comp.apache.announce + https://markmail.org/list/org.apache.announce/ + https://www.mail-archive.com/announce@apache.org/ + + + + scm:git:http://gitbox.apache.org/repos/asf/commons-parent.git + scm:git:https://gitbox.apache.org/repos/asf/commons-parent.git + https://gitbox.apache.org/repos/asf?p=commons-parent.git + + + + jira + https://issues.apache.org/jira/browse/COMMONSSITE + + + + GitHub + https://github.com/apache/commons-parent/actions + + + + + + org.junit + junit-bom + ${commons.junit.version} + pom + import + + + + + clean apache-rat:check package site @@ -277,6 +450,8 @@ Version 39: NOTICE.txt LICENSE.txt + NOTICE + LICENSE @@ -293,6 +468,8 @@ Version 39: NOTICE.txt LICENSE.txt + NOTICE + LICENSE @@ -308,9 +485,9 @@ Version 39: ${maven.compiler.target} ${commons.encoding} ${commons.compiler.fork} @@ -318,18 +495,27 @@ Version 39: ${commons.compiler.javac} + + org.apache.maven.plugins + maven-assembly-plugin + ${commons.assembly-plugin.version} + org.apache.maven.plugins maven-javadoc-plugin ${commons.javadoc.version} - - + + true + ${maven.compiler.source} + ${commons.compiler.javadoc} ${commons.encoding} - ${commons.docEncoding} + ${commons.docEncoding} + true + true ${commons.javadoc.java.link} ${commons.javadoc.javaee.link} @@ -348,10 +534,10 @@ Version 39: maven-remote-resources-plugin + Apache parent POM automatically adds "LICENSE" and "NOTICE" files + to jars - duplicating the "LICENSE.txt" and "NOTICE.txt" + files that components already have. + --> true @@ -366,7 +552,7 @@ Version 39: - + org.apache.maven.wagon wagon-ssh ${commons.wagon-ssh.version} @@ -384,7 +570,7 @@ Version 39: org.apache.maven.plugins maven-source-plugin - 3.0.1 + ${commons.source-plugin.version} @@ -410,12 +596,43 @@ Version 39: japicmp-maven-plugin ${commons.japicmp.version} + + + ${project.groupId} + ${project.artifactId} + ${commons.bc.version} + jar + + + + + ${project.build.directory}/${project.artifactId}-${project.version}.jar + + true ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} - - true + true + true + true + ${commons.japicmp.ignoreMissingClasses} + + + METHOD_NEW_DEFAULT + true + true + PATCH + + + + METHOD_ADDED_TO_INTERFACE + false + false + PATCH + + @@ -427,11 +644,24 @@ Version 39: ${commons.release.name} + + org.apache.commons + commons-release-plugin + ${commons.release-plugin.version} + org.apache.felix maven-bundle-plugin ${commons.felix.version} true + + + + biz.aQute.bnd + biz.aQute.bndlib + ${commons.biz.aQute.bndlib.version} + + org.apache.rat @@ -446,32 +676,24 @@ Version 39: org.codehaus.mojo buildnumber-maven-plugin - 1.4 - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - ${minSeverity} - + ${commons.buildnumber-plugin.version} org.codehaus.mojo versions-maven-plugin - 2.5 + 2.14.2 org.jacoco jacoco-maven-plugin ${commons.jacoco.version} + it changes the surefire arguments line. If a component also + needs to change the argument line of maven-surefire-plugin, + then it must add ${argLine} property (which is set by JaCoCo) + in the argLine configuration element of maven-surefire-plugin + to preserve JaCoCo settings. --> prepare-agent @@ -535,13 +757,141 @@ Version 39: - + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + org.apache.bcel + bcel + 6.7.0 + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${commons.checkstyle-plugin.version} + + + com.puppycrawl.tools + checkstyle + ${commons.checkstyle.version} + + + + + com.github.spotbugs + spotbugs-maven-plugin + ${commons.spotbugs.plugin.version} + + + com.github.spotbugs + spotbugs + ${commons.spotbugs.impl.version} + + + + + org.apache.maven.plugins + maven-pmd-plugin + ${commons.pmd.version} + + + net.sourceforge.pmd + pmd-core + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-java + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-javascript + ${commons.pmd-impl.version} + + + net.sourceforge.pmd + pmd-jsp + ${commons.pmd-impl.version} + + + + + org.cyclonedx + cyclonedx-maven-plugin + ${commons.cyclonedx.version} + + + make-bom + package + + makeBom + + + + + library + 1.4 + true + true + true + true + true + false + false + true + all + ${project.artifactId}-${project.version}-bom + + + + org.spdx + spdx-maven-plugin + ${commons.spdx.version} + + + build-spdx + + createSPDX + + + + + + *.spdx + + + + + org.codehaus.mojo + javancss-maven-plugin + + + + + + + **/*.java + + + - + maven-assembly-plugin @@ -554,7 +904,7 @@ Version 39: + --> org.apache.maven.plugins maven-antrun-plugin @@ -570,6 +920,8 @@ Version 39: + + @@ -582,33 +934,49 @@ Version 39: maven-compiler-plugin true org.apache.maven.plugins maven-enforcer-plugin + ${commons.enforcer-plugin.version} + + + + 3.5.0 + + + ${maven.compiler.target} + + + true + enforce-maven-3 enforce - - - - 3.0.0 - - - true - org.apache.maven.plugins maven-jar-plugin + ${commons.jar-plugin.version} + + + + test-jar + + + + true + + + ${commons.manifestfile} @@ -627,6 +995,18 @@ Version 39: + + maven-source-plugin + + + create-source-jar + + jar-no-fork + test-jar-no-fork + + + + org.apache.maven.plugins maven-surefire-plugin @@ -687,22 +1067,36 @@ Version 39: + If you wish to override this list in the component (child) pom, ensure you use + + so that the child pom entries replace the parent entries + --> site-content/** .checkstyle .fbprefs .pmd + .asf.yaml + .gitattributes src/site/resources/download_*.cgi src/site/resources/profile.* + profile.* maven-eclipse.xml .externalToolBuilders/** + + .vscode/** + + + rat-check + validate + + check + + + @@ -725,13 +1119,24 @@ Version 39: - + + org.codehaus.mojo + versions-maven-plugin + + + org.cyclonedx + cyclonedx-maven-plugin + + + org.spdx + spdx-maven-plugin + + in the section above, so we have to define the versions here. --> @@ -766,21 +1171,6 @@ Version 39: org.apache.maven.plugins maven-javadoc-plugin ${commons.javadoc.version} - - - true - ${maven.compiler.source} - ${commons.encoding} - ${commons.docEncoding} - true - true - - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - @@ -801,13 +1191,13 @@ Version 39: maven-project-info-reports-plugin ${commons.project-info.version} @@ -815,18 +1205,18 @@ Version 39: index summary modules - - project-team + + team scm - issue-tracking - mailing-list + issue-management + mailing-lists dependency-info dependency-management dependencies dependency-convergence - cim - - + ci-management + + distribution-management @@ -838,8 +1228,8 @@ Version 39: ${commons.site-plugin.version} + and the changes file used by the changes-plugin, + as they interfere with the site generation. --> navigation.xml,changes.xml @@ -861,140 +1251,203 @@ Version 39: + If you wish to override this list in the component (child) pom, ensure you use + + so that the child pom entries replace the parent entries + --> site-content/** .checkstyle .fbprefs .pmd + .asf.yaml + .gitattributes src/site/resources/download_*.cgi src/site/resources/profile.* + profile.* maven-eclipse.xml .externalToolBuilders/** + + .vscode/** - - org.codehaus.mojo - jdepend-maven-plugin - ${commons.jdepend.version} - + + svn + + + .svn + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + validate + + create + + + + + + true + + ?????? + + + javasvn + + + + + + - - - parse-target-version - - - - user.home - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - parse-version - - - parse-version - - - javaTarget - ${maven.compiler.target} - - - - - - - - + + module-name + + + profile.module-name + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + ${commons.module.name} + + + + + + + - - animal-sniffer - - - - src/site/resources/profile.noanimal - - + + + parse-target-version + + + + user.home + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + parse-version + + + parse-version + + + javaTarget + ${maven.compiler.target} + + + + + + + - - - java${javaTarget.majorVersion}${javaTarget.minorVersion} - + - - + + animal-sniffer + + + + src/site/resources/profile.noanimal + + - - - org.codehaus.mojo - animal-sniffer-maven-plugin - ${commons.animal-sniffer.version} - - - checkAPIcompatibility - - - - check - - - - - - org.codehaus.mojo.signature - ${animal-sniffer.signature} - ${commons.animal-sniffer.signature.version} - - - + + + java${javaTarget.majorVersion}${javaTarget.minorVersion} + - - - + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + ${commons.animal-sniffer.version} + + + checkAPIcompatibility + + + + check + + + + + + org.codehaus.mojo.signature + ${animal-sniffer.signature} + ${commons.animal-sniffer.signature.version} + + + + + + + jacoco src/site/resources/profile.jacoco @@ -1015,6 +1468,14 @@ Version 39: org.jacoco jacoco-maven-plugin ${commons.jacoco.version} + + + + + report + + + @@ -1038,28 +1499,10 @@ Version 39: - - clirr - - - src/site/resources/profile.clirr - - - - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - - - - - japicmp + [1.8,) src/site/resources/profile.japicmp @@ -1086,64 +1529,45 @@ Version 39: com.github.siom79.japicmp japicmp-maven-plugin ${commons.japicmp.version} + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + ${commons.japicmp.breakBuildOnSourceIncompatibleModifications} + + true + true + true + ${commons.japicmp.ignoreMissingClasses} + + + METHOD_NEW_DEFAULT + true + true + PATCH + + + + release - - - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - maven-install-plugin true - - maven-source-plugin - - - create-source-jar - - jar - test-jar - - - - - - maven-jar-plugin - - - - test-jar - - - - true - - - - maven-release-plugin @@ -1165,10 +1589,12 @@ Version 39: ${maven.compiler.source} + ${commons.compiler.javadoc} maven-assembly-plugin + ${commons.assembly-plugin.version} true @@ -1180,15 +1606,55 @@ Version 39: + + + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + org.apache.commons + commons-release-plugin + + + clean-staging + clean + + clean-staging + + + + detatch-distributions + verify + + detach-distributions + + + + stage-distributions + deploy + + stage-distributions + + + + - + apache-release @@ -1233,132 +1699,138 @@ Version 39: - - java-1.3 - - true - 1.3 - ${JAVA_1_3_HOME}/bin/javac - ${JAVA_1_3_HOME}/bin/java - - - - - - java-1.4 - - true - 1.4 - ${JAVA_1_4_HOME}/bin/javac - ${JAVA_1_4_HOME}/bin/java - - 2.11 - - - - - - java-1.5 - - true - 1.5 - ${JAVA_1_5_HOME}/bin/javac - ${JAVA_1_5_HOME}/bin/java - - - - - - java-1.6 - - true - 1.6 - ${JAVA_1_6_HOME}/bin/javac - ${JAVA_1_6_HOME}/bin/java - - - - + Profile for running the build using JDK 7 + (JAVA_1_7_HOME needs to be defined, e.g. in settings.xml or an environment variable) + --> java-1.7 true 1.7 ${JAVA_1_7_HOME}/bin/javac + ${JAVA_1_7_HOME}/bin/javadoc ${JAVA_1_7_HOME}/bin/java + Profile for running the build using JDK 8 + (JAVA_1_8_HOME needs to be defined, e.g. in settings.xml or an environment variable) + --> java-1.8 true 1.8 ${JAVA_1_8_HOME}/bin/javac + ${JAVA_1_8_HOME}/bin/javadoc ${JAVA_1_8_HOME}/bin/java + Profile for running the build using JDK 9 + (JAVA_1_9_HOME needs to be defined, e.g. in settings.xml or an environment variable) + --> java-1.9 true 1.9 ${JAVA_1_9_HOME}/bin/javac + ${JAVA_1_9_HOME}/bin/javadoc ${JAVA_1_9_HOME}/bin/java - + + + java-1.10 + + true + 1.10 + ${JAVA_1_10_HOME}/bin/javac + ${JAVA_1_10_HOME}/bin/javadoc + ${JAVA_1_10_HOME}/bin/java + + + Profile for running the build using JDK 11 + (JAVA_1_11_HOME needs to be defined, e.g. in settings.xml or an environment variable) + --> + + java-1.11 + + true + 1.11 + ${JAVA_1_11_HOME}/bin/javac + ${JAVA_1_11_HOME}/bin/javadoc + ${JAVA_1_11_HOME}/bin/java + + + + + + java-1.12 + + true + 1.12 + ${JAVA_1_12_HOME}/bin/javac + ${JAVA_1_12_HOME}/bin/javadoc + ${JAVA_1_12_HOME}/bin/java + + + + + + java-1.13 + + true + 1.13 + ${JAVA_1_13_HOME}/bin/javac + ${JAVA_1_13_HOME}/bin/javadoc + ${JAVA_1_13_HOME}/bin/java + + + + + + test-deploy id::default::file:target/deploy + true + Requires file src/changes/release-notes.vm. + A sample template is available from: + https://gitbox.apache.org/repos/asf?p=commons-parent.git;a=blob_plain;f=src/changes/release-notes.vm;hb=HEAD + --> release-notes @@ -1370,8 +1842,8 @@ Version 39: src/changes true - . - RELEASE-NOTES.txt + ${changes.announcementDirectory} + ${changes.announcementFile} ${commons.release.version} @@ -1391,7 +1863,7 @@ Version 39: svn-buildnumber @@ -1443,13 +1915,16 @@ Version 39: - + jdk7-plugin-fix-version - [1.7,) + [1.7,1.8) + 3.5.1 + 1.17 + 3.5.0 @@ -1460,10 +1935,8 @@ Version 39: true true true - true + true true - true - true true true true @@ -1519,186 +1992,4 @@ Version 39: - - - ${project.version} - RC1 - COMMONSSITE - - - - - 1.3 - 1.3 - - - false - - - - - - 1.7 - 2.20.1 - 2.20.1 - 2.20.1 - 3.0.0 - 0.12 - 2.12.1 - 2.8 - 0.11.0 - 2.5 - 2.9 - 3.0.0 - - 3.7 - 0.7.9 - 2.7 - 4.3.0 - EpochMillis - 2.0 - 3.7.0 - 1.1 - 3.0.5 - 3.4.0 - 3.0.0 - 1.16 - - 1.0 - - - ${project.artifactId}-${commons.release.version} - - -bin - ${project.artifactId}-${commons.release.2.version} - - -bin - ${project.artifactId}-${commons.release.3.version} - - -bin - - - 1.00 - 0.90 - 0.95 - 0.85 - 0.85 - 0.90 - false - - - ${project.artifactId} - - - org.apache.commons.${commons.componentid} - org.apache.commons.*;version=${project.version};-noimport:=true - * - - - true - - - ${project.build.directory}/osgi/MANIFEST.MF - - - scp - - - iso-8859-1 - - ${commons.encoding} - - ${commons.encoding} - - ${commons.encoding} - - - http://docs.oracle.com/javase/7/docs/api/ - http://docs.oracle.com/javaee/6/api/ - - - yyyy-MM-dd HH:mm:ssZ - ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} - - - info - - - 100 - - - false - - - false - - 100 - - false - - - ${user.home}/commons-sites - - ${project.artifactId} - - https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${project.artifactId} - ${commons.site.cache}/${commons.site.path} - commons.site - - - true - - https://analysis.apache.org/ - - - diff --git a/src/changes/changes.xml b/src/changes/changes.xml index 7ec1fde..a6b5801 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -21,7 +21,7 @@ This file is also used by the maven-changes-plugin to generate the release notes. Useful ways of finding items to add to this file are: -1. Add items when you fix a bug or add a feature (this makes the +1. Add items when you fix a bug or add a feature (this makes the release process easy :-). 2. Do a JIRA search for tickets closed since the previous release. @@ -32,19 +32,20 @@ SVN commits. TBA how to use this with SVN. To generate the release notes from this file: mvn changes:announcement-generate -Prelease-notes [-Dchanges.version=nn] -then tweak the formatting if necessary +then tweak the formatting if necessary and commit The type attribute can be add,update,fix,remove. --> - + - Changes + Apache Commons Parent Release Notes Apache Commons developers - + + + Add Privacy link to site.xml + + Bump apache from 28 to 29 #182. + Bump versions-maven-plugin from 2.13.0 to 2.14.2 #181, #187, #191. + Bump wagon-ssh from 3.5.2 to 3.5.3 #190. + + + Make CycloneDX work better with multi-module projects. + New interface methods must be default methods to maintain BC. + + Add property commons.javadoc19.java.link. + + Bump actions/cache from 3.0.8 to 3.0.11 #152, #155, #160. + Bump actions/checkout from 3.0.2 to 3.1.0 #154. + Bump actions/setup-java from 3.5.1 to 3.6.0 #164. + Bump actions/upload-artifact from 3.1.0 to 3.1.1 #165 + Bump github/codeql-action from 2.1.27 to 2.1.35 #162, #166, #168, #178. + Bump github/codeql-action from 2.1.23 to 2.1.31 #148, #150, #156, #172. + Bump ossf/scorecard-action from 1.1.2 to 2.0.6 #163. + Bump apache from 27 to 28 #175 + Bump JUnit from 5.9.0 to 5.9.1. + Bump spdx-maven-plugin from 0.5.5 to 0.6.3. Version 0.6.2 fixes NPE https://github.com/spdx/spdx-maven-plugin/issues/53 #159 + Bump pmd from 6.49.0 to 6.52.0. + Bump Apache Commons BCEL from 6.5.0 to 6.7.0. + Bump cyclonedx-maven-plugin from 2.7.1 to 2.7.3 #157, #173. + Bump spotbugs-maven-plugin from 4.7.2.0 to 4.7.3.0 #158, #170, #171. + Bump spotbugs from 4.7.2 to 4.7.3 #161. + Bump versions-maven-plugin from 2.12.0 to 2.13.0 #167. + Bump japicmp-maven-plugin from 0.16.0 to 0.17.1 #174. + Bump biz.aQute.bndlib from 6.3.1 to 6.4.0 #176. + + + + Add .vscode/* to RAT excludes. + Add property commons.javadoc18.java.link. + Add JUnit BOM to dependency management. + Add CycloneDX SBOM generation #122. + Add SPDX SBOM generation. + + Remove org.codehaus.mojo:jdepend-maven-plugin 2.0; it does not work with current versions of RAT and site plugins. + Remove FindBugs properties, use SpotBugs instead. + Remove Maven Clirr plugin in favor of JApiCmp. + + Bump actions/cache from 3 to 3.0.8, #118. + Bump actions/checkout from 3 to 3.0.2. + Bump actions/setup-java from 2 to 3.5.1. + Bump apache from 24 to 27 #112, #127. + Bump build-helper-maven-plugin from 3.2.0 to 3.3.0 #105. + Bump jacoco-maven-plugin from 0.8.7 to 0.8.8. + Bump spotbugs from 4.5.3 to 4.7.2 #120, #143. + Bump spotbugs-maven-plugin from 4.5.3.0 to 4.7.2.0, #129, #142. + Bump maven-project-info-reports-plugin from 3.2.2 to 3.4.1 #107, #128. + Bump maven-site-plugin from 3.11.0 to 3.12.1 #108, #132. Fix [WARNING] An issue has occurred with apache-rat-plugin:0.14:rat report, skipping LinkageError org.apache.rat.mp.RatReportMojo.generate(Lorg/codehaus/doxia/sink/Sink;Ljava/util/Locale;)V, + Bump maven-bundle-plugin from 5.1.4 to 5.1.8, #111, #126, #133. + Bump net.sourceforge.pmd:pmd-* from 6.44.0 to 6.49.0, #138. + Bump maven-jxr-plugin from 3.1.1 to 3.3.0 #110, #136. + Bump maven-javadoc-plugin from 3.3.2 to 3.4.1 #114. + Bump apache-rat from 0.13 to 0.15. + Bump biz.aQute.bndlib from 6.2.0 to 6.3.1. + Bump maven-pmd-plugin from 3.16.0 to 3.19.0 #141. + Bump maven-enforcer-plugin from 3.0.0 to 3.1.0. + Bump org.apache.maven.wagon:wagon-ssh 3.5.1 to 3.5.2. + Bump maven-assembly-plugin from 3.3.0 to 3.4.2 #123. + Bump Surefire 2.22.2 to 3.0.0-M7. + Bump Failsafe 2.22.2 to 3.0.0-M7. + Bump animal-sniffer-maven-plugin from 1.21 to 1.22. + Bump maven-checkstyle-plugin from 3.1.2 to 3.2.0. + Bump japicmp-maven-plugin from 0.15.7 to 0.16.0 #140. + Bump versions-maven-plugin from 2.11.0 to 2.12.0 #144. + Bump maven-jar-plugin from 3.2.2 to 3.3.0 #147. + + + + + Use HTTPS for Javadoc links to Oracle. + Use HTTPS for most links to Apache. + Rename property biz.aQute.bndlib.version -> commons.biz.aQute.bndlib.version. + + Add .asf.yaml to RAT excludes. + Add versions-maven-plugin run for this build. + Add maven-checkstyle-plugin to pluginManagement. + Allow Maven PMD plugin to override PMD implementation jars with property "commons.pmd-impl.version". + Add property commons.javadoc16.java.link. + Add and use property commons.enforcer-plugin.version. + Add SpotBugs to plugin management section. + Add and use property commons.buildnumber-plugin.version. + Add property commons.javadoc17.java.link. + + Bump versions-maven-plugin from 2.7 to 2.10.0 #97, #101. + Bump maven-project-info-reports-plugin from 3.1.0 to 3.2.2 #19, #41, #89, #103. + Bump Jacoco from 0.8.5 to 0.8.7, #42. + Bump actions/setup-java from v1.4.0 to v2, #18, #22. + Bump commons-build-plugin 1.11 -> 1.12 + Bump biz.aQute.bndlib from 5.1.2 to 6.2.0, #23, #31, #64, #76. + Bump actions/checkout from 2.3.1 to 3, #15, #21, #25, #66, #71, #79. + Bump com.github.siom79.japicmp:japicmp-maven-plugin 0.14.3 -> 0.15.7, #34, #68, #93. + Bump org.apache.maven.wagon:wagon-ssh 3.4.0 -> 3.4.3, #32 + Bump maven-pmd-plugin 3.13.0 -> 3.16.0 #91. + Bump commons.checkstyle-plugin.version 3.1.1 -> 3.1.2. + Bump actions/cache from 2 to 3 #29, #38, #44, #102. + Bump animal-sniffer-maven-plugin from 1.19 to 1.21 #30. + Bump com.puppycrawl.tools:checkstyle from 8.40 to 9.0.2 #33, #45, #48, #54, #55, #38, #77. + Bump maven-bundle-plugin from 5.1.1 to 5.1.4 #35, #82, #87. + Bump maven-jxr-plugin from 3.0.0 to 3.1.1 #39. + Bump maven-javadoc-plugin from 3.2.0 to 3.3.2 #43, #59, #96. + Bump commons.pmd-impl.version from 6.29.0 to 6.44.0 #46, #47, #53, #57, #62, #80, #90, #99. + Bump spotbugs-maven-plugin from 4.0.4 to 4.5.3.0 #50, #60, #83, #100. + Bump spotbugs from 4.0.6 to 4.5.3. + Bump maven-enforcer-plugin from 3.0.0-M3 to 3.0.0 #52. + Bump buildnumber-maven-plugin from 1.4 to 3.0.0 #81. + Bump maven-site-plugin from 3.9.1 to 3.11.0 #84, #98. + Bump wagon-ssh from 3.4.3 to 3.5.1 #85. + Bump checkstyle from 9.2 to 9.3 #86. + Bump maven-compiler-plugin from 3.8.1 to 3.10.1 #88. + Bump maven-jar-plugin from 3.2.0 to 3.2.2 #92. + Bump commons-release-plugin from 1.7 to 1.8.0. + + + + Update maven-site-plugin version 3.8.2 -> 3.9.1. + Align Javadoc version with java override profile + Update biz.aQute.bndlib version 5.1.0 -> 5.1.2, Java 15 support. + Update maven-bundle-plugin from 4.2.1 to 5.1.1, Java 15 support. + Update animal-sniffer-maven-plugin from 1.18 to 1.19. + Update build-helper-maven-plugin from 3.1.0 to 3.2.0. + Update commons.checkstyle-plugin.version from 3.1.0 to 3.1.1. + + + + JApiCmp 0.14.1 -> 0.14.3. + maven-enforcer-plugin 3.0.0-M2 -> 3.0.0-M3. + maven-source-plugin 3.2.0 -> 3.2.1. + commons.spotbugs.version 3.1.6 -> 3.1.12.2. + org.apache:apache 21 -> 23. + maven-javadoc-plugin 3.1.1 -> 3.2.0. + commons.pmd.version 3.12.0 -> 3.13.0. + Fix https://github.com/bndtools/bnd/issues/3903 seen with Commons CSV. + Allow Java7 builds: commons.animal-sniffer.version=1.17; biz.aQute.bndlib.version=3.5.0 + PR#5: change <docEncoding> to <docencoding> for maven javadoc plugin. + commons.project-info.version 3.0.0 -> 3.1.0 + Add support for Java 13 + Support NOTICE and LICENSE alongside .txt versions + commons.wagon-ssh.version 3.0.0 -> 3.1.0 + biz.aQute.bndlib.version 5.0.1 -> 5.1.0 + bcel version 6.4.1 -> 6.5.0 + maven pre-requisite 3.0.5 -> 3.5.0 + commons.build-helper.version 3.0.0 -> 3.1.0 + Allow override of changes.announcementFile/announcementDirectory + maven-assembly-plugin 3.2.0 -> 3.3.0 + + + + site.xml: Removed custom head element. PrettyPrint functionality is loaded by commons-skin-4.2. + site.xml: commons-skin 4.1 -> 4.2 + site.xml: Removed CDATA tag around the custom footer element + commons.wagon-ssh.version 3.3.3 -> 3.3.4 + commons.assembly-plugin.version 3.1.1 -> 3.2.0 + commons.source-plugin.version 3.1.0 -> 3.2.0 + commons.jar-plugin.version 3.1.2 -> 3.2.0 + jacoco-maven-plugin 0.8.4 -> 0.8.5 + Move japicmp reporting section to the profile for opt-in behavior. Remove japicmp.skip flag used to skip the report. + Disable jacoco non-aggregate reports. + Update site build from Apache Commons BCEL 6.3.1 to 6.4.1. + + + + maven-site-plugin 3.7.1 -> 3.8.2 + commons.felix.version=maven-bundle-plugin 4.2.0 -> 4.2.1 + commons-build-plugin 1.10 -> 1.11 + commons-release-plugin 1.6 -> 1.7 + jacoco-maven-plugin 0.8.3 -> 0.8.4 + Downdate felix plugin to work on Java 7 + Update maven-project-info-reports-plugin's Apache Commons BCEL from 6.3 to 6.3.1. + japicmp-maven-plugin 0.13.0 -> 0.13.1 + maven-bundle-plugin 4.1.0 -> 4.2.0 + commons.scmPubUrl was not built properly, e.g. using 'pool' instead of 'commons-pool' + japicmp-maven-plugin 0.13.1 -> 0.14.0 + japicmp-maven-plugin should not break builds on source incompatible changes by default. + commons.compiler.version 3.8.0 ->3.8.1. + Add properties commons.javadoc6.java.link through commons.javadoc12.java.link + Add properties commons.javadoc.javaee5.link through commons.javadoc.javaee7.link + Maven Surefire and Failsafe plugins 2.22.1 -> 2.22.2 + commons.jar-plugin.version 3.1.1 -> 3.1.2 + Add profile java-1.12 + Add commons.pmd.version + maven-source-plugin 3.0.1 -> 3.1.0 + japicmp-maven-plugin 0.14.0 -> 0.14.1 + Add commons.checkstyle-plugin.version + Add property commons.release.4.desc (see Apache Commons Pool.) + Add property commons.release.4.binary.suffix (see Apache Commons Pool.) + commons.wagon-ssh.version 3.3.2 -> 3.3.3 + commons.javadoc.version 3.1.0 -> 3.1.1 + Add missing source config for Javadoc plugin. + Adding Java 8 default methods should not break binary compatibility. + Set Javadoc source option to Maven compiler source setting. + jacoco-maven-plugin 0.8.3 -> 0.8.4. + commons-release-plugin 1.6 -> 1.7. + animal-sniffer-maven-plugin 1.17 -> 1.18. + + + + Run "apache-rat:check" as part of "mvn validate" + Revert revert change in commons.scmPubUrl in Parent 47, use commons.packageId for osgi + commons.build-plugin.version: 1.9 -> 1.10 + commons.release-plugin.version: 1.5 -> 1.6 + commons.spotbugs.version: 3.1.3 -> 3.1.6 + japicmp-maven-plugin: 0.12.0 -> 0.13.0 + Revert change in commons.scmPubUrl in Parent 47 + Update parent from org.apache:apache 19 to 20. + maven-compiler-plugin 3.7.0 -> 3.8.0 + re-enabled japicmp and introduced japicmp.skip property that + controls whether japicmp reports are run. It is disabled by + default and enabled via a special profile enabled by the + presence of the file src/site/resources/profile.japicmp + - org.apache.felix:maven-bundle-plugin 3.5.0 -> 3.5.1 + org.apache.felix:maven-bundle-plugin 3.5.0 -> 3.5.1 + org.jacoco:jacoco-maven-plugin 0.8.1 -> 0.8.3 (Java 11) + org.apache.maven.wagon:wagon-ssh 3.1.0 -> 3.2.0 + maven-surefire-plugin 2.22.0 -> 2.22.1 + maven-surefire-report-plugin 2.22.0 -> 2.22.1 + maven-failsafe-plugin 2.22.0 -> 2.22.1 + versions-maven-plugin 2.5 -> 2.7 + org.apache.felix:maven-bundle-plugin 3.5.1 -> 4.1.0 + maven-jxr-plugin 2.5 -> 3.0.0 + org.apache.rat:apache-rat-plugin 0.12 -> 0.13 + commons.wagon-ssh.version 3.2.0 -> 3.3.1 + maven-assembly-plugin 3.1.0 -> 3.1.1 + commons.jar-plugin.version 3.1.0 -> 3.1.1 + commons.animal-sniffer.version 1.16 -> 1.17 + org.apache.bcel:bcel 6.2 -> 6.3 + commons-release-plugin 1.4 -> 1.5 + org.apache.maven.wagon:wagon-ssh 3.3.1 -> 3.3.2 + org.apache.maven.plugins:maven-javadoc-plugin 3.0.1 -> 3.1.0 + + + + Set the version of Apache Commons BCEL used by maven-project-info-reports-plugin to avoid + "org.apache.bcel.classfile.ClassFormatException: Invalid byte tag in constant pool: 19" + Allows JApiCmp's ignoreMissingClasses parameter to be easily overridable with the property commons.japicmp.ignoreMissingClasses. + japicmp-maven-plugin 0.11.1 -> 0.12.0 + New properties: commons.distSvnStagingUrl, commons.releaseManagerName, commons.releaseManagerKey + maven-javadoc-plugin 3.0.0 -> 3.0.1 (Java 10 compatibility) + maven-site-plugin 3.7.0 -> 3.7.1. + org.apache.maven.wagon:wagon-ssh 3.0.0 -> 3.1.0 + maven-surefire-report-plugin 2.21.0 -> 2.22.0 + maven-enforcer-plugin 3.0.0-M1 -> 3.0.0-M2 + commons-release-plugin 1.2 -> 1.3 + commons-build-plugin 1.8 -> 1.9 + maven-surefire-plugin 2.21.0 -> 2.22.0 + maven-project-info-reports-plugin 2.9 -> 3.0.0 + + + + japicmp-maven-plugin 0.11.0 -> 0.11.1 + maven-surefire-report-plugin 2.20.1 -> 2.21.0 + Add java-1.10 profile + Add java-1.11 profile + jacoco-maven-plugin 0.8.0 -> 0.8.1 + commons-build-plugin 1.7 -> 1.8 + commons-release-plugin 1.1 -> 1.2 + japicmp-maven-plugin: oldVersionPattern=\d+\.\d+\.\d* + maven-assembly-plugin: 3.0.0 -> 3.1.0 + Prerequisites tag; should only be used for maven-plugins, using maven-enforcer-plugin instead. + + + + Rearranging plugin order in -Prelease, removing commons-release-plugin from build>pluginManagement + + + + new profile module-name to add 'Automatic-Module-Name' entry to the manifest + felix:maven-bundle-plugin 3.4.0 -> 3.5.0. + build artifacts -test.jar, -sources.jar and -test-sources.jar always, not only at release time + maven-enforcer-plugin set version to 3.0.0-M1 and update Maven requirement from 3.0.0 to 3.0.5 (the latest 3.0.x.) + jacoco-maven-plugin 0.7.9 -> 0.8.0. + Fix japicmp config: add to reporting section and define ignoreMissingNewVersion explicitly + org.apache:apache 18 -> 19 + COMMONSSITE-105: Add commons-release-plugin version 1.1 + COMMONSSITE-106: Add spotbugs-maven-plugin version 3.1.3 + maven-surefire-plugin 2.20.1 -> 2.21.0 + maven-failsafe-plugin 2.20.1 -> 2.21.0 + + maven-compiler-plugin 3.6.1 -> 3.6.2. maven-compiler-plugin 3.6.2 -> 3.7.0. @@ -94,7 +413,7 @@ The type attribute can be add,update,fix,remove. controls the breakBuildOnBinaryIncompatibleModifications setting of japicmp - + COMMONSSITE-89 - support both clirr and japicmp Clirr report must now be explicitly enabled using src/site/resources/profile.clirr file or -Pclirr option @@ -143,32 +462,32 @@ N.B. The assembly plugin now runs in the verify phase (it was previously run in Update Jar Plugin : 2.5 -> 2.6 Drop the "trunks-proper" profile Update animal-sniffer Plugin : 2.13 -> 2.14 (for Java7+ build profile) - Move assembly to standard location. src/main => src/assembly/src.xml + Move assembly to standard location. src/main -> src/assembly/src.xml Update Jacoco Plugin : 0.7.4.201502262128 -> 0.7.5.201505241946 Fix URL for Security link - Update Assembly Plugin : 2.5.3 => 2.5.5 - Update Cobertura Plugin : 2.6 => 2.7 - Update Jacoco Plugin : 0.7.2 => 0.7.4 - Update Javadoc Plugin : 2.10.1 => 2.10.2 - Update Surefire Plugin : 2.18 => 2.18.1 + Update Assembly Plugin : 2.5.3 -> 2.5.5 + Update Cobertura Plugin : 2.6 -> 2.7 + Update Jacoco Plugin : 0.7.2 -> 0.7.4 + Update Javadoc Plugin : 2.10.1 -> 2.10.2 + Update Surefire Plugin : 2.18 -> 2.18.1 Update minimum Maven prerequisite (as defined by Findbugs) 3.0 -> 3.0.1 Update org.apache:apache 15 to 16 (nop for Commons: maven-compiler-plugin already contained source/target) - Update Maven Project Info Reports Plugin : 2.7 => 2.8 + Update Maven Project Info Reports Plugin : 2.7 -> 2.8 merged maven-3 profile into main body (Maven 2 is no longer supported) Added Animal Sniffer profile (active by default) renamed the profile jdk7-findbugs to jdk7-plugin-fix-version Allow to configure dependency excludes of bundle-plugin with commons.osgi.excludeDependencies Added property commons.changes.onlyCurrentVersion for changes plugin Jira report - Update GPG Plugin : 1.5 => 1.6 - Update Antrun Plugin : 1.7 => 1.8 + Update GPG Plugin : 1.5 -> 1.6 + Update Antrun Plugin : 1.7 -> 1.8 Allow changes Jira report maxEntries to be overridden (default 100) Allow changes Jira report runOnlyAtExecutionRoot to be overridden Added site-basic profile to allow quick generation of the basic site docs @@ -234,7 +553,7 @@ The main changes in this release are: - updated some plugins "> - + commons-skin 3 -> 4 maven-deploy-plugin 2.7 -> 2.8.1 maven-jxr-plugin 2.3 -> 2.4 @@ -246,13 +565,13 @@ The main changes in this release are: apache-rat-plugin 0.9 -> 0.10 clirr-maven-plugin 2.5 -> 2.6.1 cobertura-maven-plugin 2.5.2 -> 2.6 - + jacoco-maven-plugin 0.6.3.201306030806 -> 0.6.4.201312101107 Fixed JaCoCo configuration - syntax changed completely between 0.6.2.x and 0.6.3.x Add commons.compiler.version property so compiler plugin version can be overridden if necessary Add source archive to Maven artifacts - + Dropped "rc" profile as no longer relevant maven-bundle-plugin 2.3.7 -> 2.4.0 maven-surefire[-report]-plugin 2.14.1 -> 2.15 - renamed properties maven.compile.* => maven.compiler.* + renamed properties maven.compile.* -> maven.compiler.* Exclude .checkstyle and .fbprefs from RAT check Also changed, but omitted from changes section in released version: @@ -347,7 +666,7 @@ ${argLine} property): Added maven-scm-publish-plugin 1.0-beta-2 Removed timestamp from Javadoc output Moved Cobertura from default to reporting profile - Renamed module sanselan => imaging + Renamed module sanselan -> imaging Added scm publishing properties @@ -355,7 +674,7 @@ ${argLine} property): update maven-site-plugin to 3.1 in reporting section use properties for all reporting plugins to ensure consistency - maven-changes-plugin: 2.7.1 => 2.8 (fixes MCHANGES-285 SAXException parsing JIRA XML from JIRA 5.1) + maven-changes-plugin: 2.7.1 -> 2.8 (fixes MCHANGES-285 SAXException parsing JIRA XML from JIRA 5.1) maven-project-info-reports-plugin 2.5 -> 2.5.1 maven-resources-plugin 2.5 -> 2.6 maven-surefire-plugin 2.12.2 -> 2.12.3 @@ -368,44 +687,44 @@ ${argLine} property): (in fact it causes problems, because it reverts bndlib to a version that is missing some required new methods) - maven-changes-plugin: 2.6 => 2.7.1 - maven-clean-plugin: 2.4.1 => 2.5 - maven-compiler-plugin: 2.3.2 => 2.5.1 - maven-project-info-reports-plugin: 2.4 => 2.5 - maven-release-plugin: 2.2.2 => 2.3.2 - maven-remote-resources-plugin: 1.2.1 => 1.3 - maven-site-plugin: 3.0 => 3.1 - maven-source-plugin: 2.1.2 => 2.2 - maven-surefire-plugin: 2.12 => 2.12.2 - maven-surefire-report-plugin: 2.12 => 2.12.2 - org.codehaus.mojo:buildnumber-maven-plugin: 1.0 => 1.1 + maven-changes-plugin: 2.6 -> 2.7.1 + maven-clean-plugin: 2.4.1 -> 2.5 + maven-compiler-plugin: 2.3.2 -> 2.5.1 + maven-project-info-reports-plugin: 2.4 -> 2.5 + maven-release-plugin: 2.2.2 -> 2.3.2 + maven-remote-resources-plugin: 1.2.1 -> 1.3 + maven-site-plugin: 3.0 -> 3.1 + maven-source-plugin: 2.1.2 -> 2.2 + maven-surefire-plugin: 2.12 -> 2.12.2 + maven-surefire-report-plugin: 2.12 -> 2.12.2 + org.codehaus.mojo:buildnumber-maven-plugin: 1.0 -> 1.1 Updated various plugin versions: - clirr-maven-plugin: 2.3 => 2.4 + clirr-maven-plugin: 2.3 -> 2.4 clirr and RAT added to pluginManagement so can override the version from Apache POM - Add changes and jira reports + Add changes and jira reports Updated various plugin versions: - antrun: 1.6 => 1.7 - assembly: 2.2.1 => 2.3 - jar: 2.3.2 => 2.4 - release: 2.2.1 => 2.2.2 + antrun: 1.6 -> 1.7 + assembly: 2.2.1 -> 2.3 + jar: 2.3.2 -> 2.4 + release: 2.2.1 -> 2.2.2 remote-resources: override Apache pom 9 with 1.2.1 - commons-build: 1.3 => 1.4 - bundle: 2.3.5 => 2.3.7; removed workround for Java 1.5 as no longer necessary + commons-build: 1.3 -> 1.4 + bundle: 2.3.5 -> 2.3.7; removed workround for Java 1.5 as no longer necessary Added cobertura: 2.5.1 to reporting and buildManagement - surefire: 2.9 => 2.12 - surefire-report: 2.9 => 2.12 + surefire: 2.9 -> 2.12 + surefire-report: 2.9 -> 2.12 Allow override of surefire-report aggregate setting using property commons.surefire-report.aggregate - javadoc: 2.8 => 2.8.1 - rat: 0.7 => 0.8 - wagon-ssh 1.0 => 2.2 (M3 only) + javadoc: 2.8 -> 2.8.1 + rat: 0.7 -> 0.8 + wagon-ssh 1.0 -> 2.2 (M3 only) Deleted "ci" profile (does not apply with Nexus) Add default project info reports: excluded license/plugins/plugin management Add tests.jar and test-sources.jar to deployed files @@ -482,7 +801,7 @@ Starting with version 22, the RAT plugin has changed Maven group and id, Add Javadoc link to Java EE. - + diff --git a/src/changes/release-notes.vm b/src/changes/release-notes.vm index e0589ca..2ecdbcf 100644 --- a/src/changes/release-notes.vm +++ b/src/changes/release-notes.vm @@ -18,7 +18,7 @@ ${project.name} ${version} RELEASE NOTES -The ${developmentTeam} is pleased to announce the release of ${project.name} ${version} +The ${developmentTeam} is pleased to announce the release of ${project.name} ${version}. $introduction.replaceAll("(? - + Apache Commons @@ -43,7 +43,7 @@ ! This is due to be fixed in version 2.3 of the site plugin - see MSITE-159, MSHARED-189 ! Or use site:stage which does not convert these links ... --> - http://commons.apache.org.remove.invalid/ + https://commons.apache.org.remove.invalid/ @@ -53,83 +53,71 @@ org.apache.commons commons-skin - 4.1 + 4.2 - - code sections --> - - - - - ]]> - - - + - - - + + + - - - - + + + + - - + + - - + + - - - - - - - - + + + + + + + + + + - - - - - - + + + + + + + - + - + -
@@ -137,7 +125,6 @@ All other marks mentioned may be trademarks or registered trademarks of their respective owners.
- ]]>
diff --git a/src/test/pom.xml b/src/test/pom.xml index 9ad195c..e45c003 100644 --- a/src/test/pom.xml +++ b/src/test/pom.xml @@ -22,7 +22,7 @@ org.apache.commons commons-parent - 40-SNAPSHOT + 50-SNAPSHOT ../.. org.apache.commons