You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2022/03/13 17:34:07 UTC

[commons-release-plugin] branch master updated (b8576ef -> 2f75de5)

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-release-plugin.git.


    from b8576ef  Set version to a snapshot.
     new f88c2e2  Remove duplicate data which is already in the release notes in the root folder.
     new 2f75de5  Preparations for releasing 1.8.0.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 RELEASE-NOTES.txt                                  |  17 +-
 .../resources/release-notes/RELEASE-NOTES-1.0.txt  |  36 ----
 .../resources/release-notes/RELEASE-NOTES-1.1.txt  |  56 ------
 .../resources/release-notes/RELEASE-NOTES-1.2.txt  |  69 --------
 .../resources/release-notes/RELEASE-NOTES-1.3.txt  |  88 ----------
 .../resources/release-notes/RELEASE-NOTES-1.4.txt  | 105 -----------
 .../resources/release-notes/RELEASE-NOTES-1.5.txt  | 127 --------------
 .../resources/release-notes/RELEASE-NOTES-1.6.txt  | 155 -----------------
 .../resources/release-notes/RELEASE-NOTES-1.7.txt  | 192 ---------------------
 src/site/xdoc/development.xml                      |   2 +-
 src/site/xdoc/index.xml                            |   2 +-
 11 files changed, 17 insertions(+), 832 deletions(-)
 delete mode 100755 src/site/resources/release-notes/RELEASE-NOTES-1.0.txt
 delete mode 100755 src/site/resources/release-notes/RELEASE-NOTES-1.1.txt
 delete mode 100755 src/site/resources/release-notes/RELEASE-NOTES-1.2.txt
 delete mode 100755 src/site/resources/release-notes/RELEASE-NOTES-1.3.txt
 delete mode 100755 src/site/resources/release-notes/RELEASE-NOTES-1.4.txt
 delete mode 100755 src/site/resources/release-notes/RELEASE-NOTES-1.5.txt
 delete mode 100644 src/site/resources/release-notes/RELEASE-NOTES-1.6.txt
 delete mode 100644 src/site/resources/release-notes/RELEASE-NOTES-1.7.txt

[commons-release-plugin] 02/02: Preparations for releasing 1.8.0.

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-release-plugin.git

commit 2f75de59b0af12a48fd6deb34baff14ca1aa1d42
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Mar 13 13:34:02 2022 -0400

    Preparations for releasing 1.8.0.
---
 RELEASE-NOTES.txt             | 17 +++++++++++++++--
 src/site/xdoc/development.xml |  2 +-
 src/site/xdoc/index.xml       |  2 +-
 3 files changed, 17 insertions(+), 4 deletions(-)

diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index f432d57..e4fa69d 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -1,11 +1,11 @@
 Apache Commons Release Plugin
-Version 1.8.0
+Version 1.8.0-SNAPSHOT
 Release Notes
 
 
 INTRODUCTION:
 
-This document contains the release notes for the 1.8.0 version of Apache Commons Text.
+This document contains the release notes for the 1.8.0-SNAPSHOT version of Apache Commons Text.
 Commons Text is a set of utility functions and reusable components for the purpose of processing
 and manipulating text that should be of use in a Java environment.
 
@@ -26,6 +26,7 @@ o                   Don't create hash for .asc files.
 o                   Replace construction of FileInputStream and FileOutputStream objects with Files NIO APIs. #44. Thanks to Arturo Bernal, Bruno P. Kinoshita.
 o                   Replace FindBugs with SpotBugs.
 o                   Minor Improvements #34. Thanks to Arturo Bernal.
+o                   Workaround UnsupportedOperationException in CommonsDistributionDetachmentMojo.execute due to https://issues.apache.org/jira/browse/MNG-7316. Thanks to Gary Gregory.
 
 Changes:
 o                   Bump maven-checkstyle-plugin from 3.1.1 to 3.1.2 #36.
@@ -64,6 +65,18 @@ Download page: https://commons.apache.org/proper/commons-release-plugin//downloa
 Have fun!
 -Apache Commons Team
 
+Historical list of changes: https://commons.apache.org/proper/commons-release-plugin//changes-report.html
+
+For complete information on Apache Commons Release Plugin, including instructions on how to submit bug reports,
+patches, or suggestions for improvement, see the Apache Apache Commons Release Plugin website:
+
+https://commons.apache.org/proper/commons-release-plugin/
+
+Download page: https://commons.apache.org/proper/commons-release-plugin//download_text.cgi
+
+Have fun!
+-Apache Commons Team
+
 =============================================================================
 
                          Apache Commons Release Plugin
diff --git a/src/site/xdoc/development.xml b/src/site/xdoc/development.xml
index d2eb64a..5fec68f 100755
--- a/src/site/xdoc/development.xml
+++ b/src/site/xdoc/development.xml
@@ -65,7 +65,7 @@ private Boolean dryRun;
 <plugin>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-release-plugin</artifactId>
-  <version>1.7</version>
+  <version>1.8.0</version>
   <configuration>
     <dryRun>true</dryRun>
   </configuration>
diff --git a/src/site/xdoc/index.xml b/src/site/xdoc/index.xml
index 6f76209..4411344 100755
--- a/src/site/xdoc/index.xml
+++ b/src/site/xdoc/index.xml
@@ -81,7 +81,7 @@
 <plugin>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-release-plugin</artifactId>
-  <version>1.7</version>
+  <version>1.8.0</version>
   <executions>
     <execution>
       <id>clean-staging</id>

[commons-release-plugin] 01/02: Remove duplicate data which is already in the release notes in the root folder.

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-release-plugin.git

commit f88c2e2fc4febba88992022209e063e583e3b926
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Mar 13 13:33:51 2022 -0400

    Remove duplicate data which is already in the release notes in the root
    folder.
---
 .../resources/release-notes/RELEASE-NOTES-1.0.txt  |  36 ----
 .../resources/release-notes/RELEASE-NOTES-1.1.txt  |  56 ------
 .../resources/release-notes/RELEASE-NOTES-1.2.txt  |  69 --------
 .../resources/release-notes/RELEASE-NOTES-1.3.txt  |  88 ----------
 .../resources/release-notes/RELEASE-NOTES-1.4.txt  | 105 -----------
 .../resources/release-notes/RELEASE-NOTES-1.5.txt  | 127 --------------
 .../resources/release-notes/RELEASE-NOTES-1.6.txt  | 155 -----------------
 .../resources/release-notes/RELEASE-NOTES-1.7.txt  | 192 ---------------------
 8 files changed, 828 deletions(-)

diff --git a/src/site/resources/release-notes/RELEASE-NOTES-1.0.txt b/src/site/resources/release-notes/RELEASE-NOTES-1.0.txt
deleted file mode 100755
index 6167093..0000000
--- a/src/site/resources/release-notes/RELEASE-NOTES-1.0.txt
+++ /dev/null
@@ -1,36 +0,0 @@
-                         Apache Commons Release Plugin
-                                  Version 1.0
-                                 Release Notes
-
-INTRODUCTION
-============
-This document contains the release notes for the 1.0 version of Apache commons-release-plgin.
-The commons-release-plugin is meant to be a mechanism for automating The Apache Commons Project's
-release process.
-
-The Apache Commons Release Plugin is a collection of Java based Maven mojos for Apache Commons
-Release process. These mojos are intended to be used as a collection of steps to be strung
-together for the purpose of removing the manual steps required to produce an Apache Commons Release.
-
-
-Changes in this version include:
-
-NEW FEATURES
-============
-
-o COMMONSSITE-96:   Create commons-release-component project skeleton.
-o COMMONSSITE-99:   Prepare Standard Build integrations, travis, jacoco, checkstyle, etc.
-o COMMONSSITE-97:   Documentation for commons-release-plugin.
-
-
-Historical list of changes: https://commons.apache.org/release-plugin/changes-report.html
-
-For complete information on the Apache commons-release-plugin, including instructions on how
-to submit bug reports, patches, or suggestions for improvement, see the Apache commons-release-plugin's
-website:
-
-https://commons.apache.org/release-plugin/
-
-Have fun!
--Apache Commons Release Plugin team
-
diff --git a/src/site/resources/release-notes/RELEASE-NOTES-1.1.txt b/src/site/resources/release-notes/RELEASE-NOTES-1.1.txt
deleted file mode 100755
index 5ffb6b6..0000000
--- a/src/site/resources/release-notes/RELEASE-NOTES-1.1.txt
+++ /dev/null
@@ -1,56 +0,0 @@
-                         Apache Commons Release Plugin
-                                  Version 1.1
-                                 Release Notes
-
-INTRODUCTION
-============
-This document contains the release notes for the 1.0 version of Apache commons-release-plgin.
-The commons-release-plugin is meant to be a mechanism for automating The Apache Commons Project's
-release process.
-
-The Apache Commons Release Plugin is a collection of Java based Maven mojos for Apache Commons
-Release process. These mojos are intended to be used as a collection of steps to be strung
-together for the purpose of removing the manual steps required to produce an Apache Commons Release.
-
-
-Changes in this version include:
-
-NEW FEATURES
-============
-
-o COMMONSSITE-98:  Making the project more multi-module compatible
-
-FIXED BUGS
-==========
-
-o COMMONSSITE-104: Sha1 signature files now reflect actual signatures.
-o COMMONSSITE-102: Commons Release Plugin doesn't work with Commons Release Plugin
-o COMMONSSITE-101: Make -Dcommons.release.dryRun=true our commit toggle
-
-
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.0
-                                 Release Notes
-
-NEW FEATURES
-============
-
-o COMMONSSITE-96:   Create commons-release-component project skeleton.
-o COMMONSSITE-99:   Prepare Standard Build integrations, travis, jacoco, checkstyle, etc.
-o COMMONSSITE-97:   Documentation for commons-release-plugin.
-
-
-Historical list of changes: https://commons.apache.org/release-plugin/changes-report.html
-
-For complete information on the Apache commons-release-plugin, including instructions on how
-to submit bug reports, patches, or suggestions for improvement, see the Apache commons-release-plugin's
-website:
-
-https://commons.apache.org/release-plugin/
-
-Have fun!
--Apache Commons Release Plugin team
-
diff --git a/src/site/resources/release-notes/RELEASE-NOTES-1.2.txt b/src/site/resources/release-notes/RELEASE-NOTES-1.2.txt
deleted file mode 100755
index 52c8874..0000000
--- a/src/site/resources/release-notes/RELEASE-NOTES-1.2.txt
+++ /dev/null
@@ -1,69 +0,0 @@
-                         Apache Commons Release Plugin
-                                  Version 1.2
-                                 Release Notes
-
-INTRODUCTION
-============
-This document contains the release notes for the 1.2 version of Apache commons-release-plgin.
-The commons-release-plugin is meant to be a mechanism for automating The Apache Commons Project's
-release process.
-
-The Apache Commons Release Plugin is a collection of Java based Maven mojos for Apache Commons
-Release process. These mojos are intended to be used as a collection of steps to be strung
-together for the purpose of removing the manual steps required to produce an Apache Commons Release.
-
-
-Changes in this version include:
-
-FIXED BUGS
-==========
-
-o COMMONSSITE-107: Adding ./target/commons-release-plugin/scm/RELEASE-NOTES.txt
-                   to svn as opposed to ./RELEASE-NOTES.txt
-
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.0
-                                 Release Notes
-
-NEW FEATURES
-============
-
-o COMMONSSITE-98:  Making the project more multi-module compatible
-
-FIXED BUGS
-==========
-
-o COMMONSSITE-104: Sha1 signature files now reflect actual signatures.
-o COMMONSSITE-102: Commons Release Plugin doesn't work with Commons Release Plugin
-o COMMONSSITE-101: Make -Dcommons.release.dryRun=true our commit toggle
-
-
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.0
-                                 Release Notes
-
-NEW FEATURES
-============
-
-o COMMONSSITE-96:   Create commons-release-component project skeleton.
-o COMMONSSITE-99:   Prepare Standard Build integrations, travis, jacoco, checkstyle, etc.
-o COMMONSSITE-97:   Documentation for commons-release-plugin.
-
-
-Historical list of changes: https://commons.apache.org/release-plugin/changes-report.html
-
-For complete information on the Apache commons-release-plugin, including instructions on how
-to submit bug reports, patches, or suggestions for improvement, see the Apache commons-release-plugin's
-website:
-
-https://commons.apache.org/release-plugin/
-
-Have fun!
--Apache Commons Release Plugin team
-
diff --git a/src/site/resources/release-notes/RELEASE-NOTES-1.3.txt b/src/site/resources/release-notes/RELEASE-NOTES-1.3.txt
deleted file mode 100755
index 5af961d..0000000
--- a/src/site/resources/release-notes/RELEASE-NOTES-1.3.txt
+++ /dev/null
@@ -1,88 +0,0 @@
-                         Apache Commons Release Plugin
-                                  Version 1.3
-                                 Release Notes
-
-INTRODUCTION
-============
-This document contains the release notes for the 1.3 version of Apache commons-release-plgin.
-The commons-release-plugin is meant to be a mechanism for automating The Apache Commons Project's
-release process.
-
-The Apache Commons Release Plugin is a collection of Java based Maven mojos for Apache Commons
-Release process. These mojos are intended to be used as a collection of steps to be strung
-together for the purpose of removing the manual steps required to produce an Apache Commons Release.
-
-
-Changes in this version include:
-
-
-NEW FEATURES
-============
-o COMMONSSITE-112:  Add a vote.txt file.
-o COMMONSSITE-108:  Adding README.html and HEADER.html to staged release
-
-
-CHANGES
-=======
-o COMMONSSITE-113: Put unpacked site in scm dev dist directory for navigating purposes.
-o Update platform requirement from Java 7 to Java 8.
-
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.2
-                                 Release Notes
-
-FIXED BUGS
-==========
-
-o COMMONSSITE-107: Adding ./target/commons-release-plugin/scm/RELEASE-NOTES.txt
-                   to svn as opposed to ./RELEASE-NOTES.txt
-
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.1
-                                 Release Notes
-
-NEW FEATURES
-============
-
-o COMMONSSITE-98:  Making the project more multi-module compatible
-
-FIXED BUGS
-==========
-
-o COMMONSSITE-104: Sha1 signature files now reflect actual signatures.
-o COMMONSSITE-102: Commons Release Plugin doesn't work with Commons Release Plugin
-o COMMONSSITE-101: Make -Dcommons.release.dryRun=true our commit toggle
-
-
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.0
-                                 Release Notes
-
-NEW FEATURES
-============
-
-o COMMONSSITE-96:   Create commons-release-component project skeleton.
-o COMMONSSITE-99:   Prepare Standard Build integrations, travis, jacoco, checkstyle, etc.
-o COMMONSSITE-97:   Documentation for commons-release-plugin.
-
-
-Historical list of changes: https://commons.apache.org/release-plugin/changes-report.html
-
-For complete information on the Apache commons-release-plugin, including instructions on how
-to submit bug reports, patches, or suggestions for improvement, see the Apache commons-release-plugin's
-website:
-
-https://commons.apache.org/release-plugin/
-
-Have fun!
--Apache Commons Release Plugin team
-
diff --git a/src/site/resources/release-notes/RELEASE-NOTES-1.4.txt b/src/site/resources/release-notes/RELEASE-NOTES-1.4.txt
deleted file mode 100755
index 6a2aed1..0000000
--- a/src/site/resources/release-notes/RELEASE-NOTES-1.4.txt
+++ /dev/null
@@ -1,105 +0,0 @@
-                         Apache Commons Release Plugin
-                                  Version 1.4
-                                 Release Notes
-
-INTRODUCTION
-============
-This document contains the release notes for the 1.4 version of Apache commons-release-plugin.
-The commons-release-plugin is meant to be a mechanism for automating The Apache Commons Project's
-release process.
-
-The Apache Commons Release Plugin is a collection of Java based Maven mojos for Apache Commons
-Release process. These mojos are intended to be used as a collection of steps to be strung
-together for the purpose of removing the manual steps required to produce an Apache Commons Release.
-
-
-Changes in this version include:
-
-Fixed Bugs
-==========
-o Check the result of checking out files from the SCM.
-
-CHANGES
-=======
-o Better error message when files cannot be checked in to the SCM.
-o COMMONSSITE-120: [release-plugin] Use SHA-256 and SHA-512, not MD5, not SHA-1.
-o Update Apache Commons Compress from 1.17 to 1.18.
-
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.3
-                                 Release Notes
-
-NEW FEATURES
-============
-o COMMONSSITE-112:  Add a vote.txt file.
-o COMMONSSITE-108:  Adding README.html and HEADER.html to staged release
-
-
-CHANGES
-=======
-o COMMONSSITE-117: Remove md5 signatures from release artifacts.
-o COMMONSSITE-113: Put unpacked site in scm dev dist directory for navigating purposes.
-o Update platform requirement from Java 7 to Java 8.
-
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.2
-                                 Release Notes
-
-FIXED BUGS
-==========
-
-o COMMONSSITE-107: Adding ./target/commons-release-plugin/scm/RELEASE-NOTES.txt
-                   to svn as opposed to ./RELEASE-NOTES.txt
-
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.1
-                                 Release Notes
-
-NEW FEATURES
-============
-
-o COMMONSSITE-98:  Making the project more multi-module compatible
-
-FIXED BUGS
-==========
-
-o COMMONSSITE-104: Sha1 signature files now reflect actual signatures.
-o COMMONSSITE-102: Commons Release Plugin doesn't work with Commons Release Plugin
-o COMMONSSITE-101: Make -Dcommons.release.dryRun=true our commit toggle
-
-
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.0
-                                 Release Notes
-
-NEW FEATURES
-============
-
-o COMMONSSITE-96:   Create commons-release-component project skeleton.
-o COMMONSSITE-99:   Prepare Standard Build integrations, travis, jacoco, checkstyle, etc.
-o COMMONSSITE-97:   Documentation for commons-release-plugin.
-
-
-Historical list of changes: https://commons.apache.org/release-plugin/changes-report.html
-
-For complete information on the Apache commons-release-plugin, including instructions on how
-to submit bug reports, patches, or suggestions for improvement, see the Apache commons-release-plugin's
-website:
-
-https://commons.apache.org/release-plugin/
-
-Have fun!
--Apache Commons Release Plugin team
-
diff --git a/src/site/resources/release-notes/RELEASE-NOTES-1.5.txt b/src/site/resources/release-notes/RELEASE-NOTES-1.5.txt
deleted file mode 100755
index 706751f..0000000
--- a/src/site/resources/release-notes/RELEASE-NOTES-1.5.txt
+++ /dev/null
@@ -1,127 +0,0 @@
-                         Apache Commons Release Plugin
-                                  Version 1.5
-                                 Release Notes
-
-INTRODUCTION
-============
-This document contains the release notes for the 1.5 version of Apache commons-release-plugin.
-The commons-release-plugin is meant to be a mechanism for automating The Apache Commons Project's
-release process.
-
-The Apache Commons Release Plugin is a collection of Java based Maven mojos for Apache Commons
-Release process. These mojos are intended to be used as a collection of steps to be strung
-together for the purpose of removing the manual steps required to produce an Apache Commons Release.
-
-
-Changes in this version include:
-
-NEW FEATURES
-============
-o COMMONSSITE-123:  introduce configuration parameter to perfom distribution checkin using Maven settings server credentials
-
-FIXED BUGS
-==========
-o ReadmeHtmlVelocityDelegate, accommodate for artifactIds ending in numbers
-o ReadmeHtmlVelocityDelegate, bcel's artifactId != commons-bcel, but is just bcel
-o COMMONSSITE-122:  stage-distributions mojo assumes site directory has basename 'site'
-
-CHANGES
-=======
-o vote-txt, use github as opposed to git-wip
-o Drop sha-256 and leave sha-512 only
-o commons.jacoco.version: 0.8.0 -> 0.8.2; java 11 compatibility
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.4
-                                 Release Notes
-
-FIXED BUGS
-==========
-o Check the result of checking out files from the SCM.
-
-CHANGES
-=======
-o Better error message when files cannot be checked in to the SCM.
-o COMMONSSITE-120: [release-plugin] Use SHA-256 and SHA-512, not MD5, not SHA-1.
-o Update Apache Commons Compress from 1.17 to 1.18.
-
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.3
-                                 Release Notes
-
-NEW FEATURES
-============
-o COMMONSSITE-112:  Add a vote.txt file.
-o COMMONSSITE-108:  Adding README.html and HEADER.html to staged release
-
-
-CHANGES
-=======
-o COMMONSSITE-117: Remove md5 signatures from release artifacts.
-o COMMONSSITE-113: Put unpacked site in scm dev dist directory for navigating purposes.
-o Update platform requirement from Java 7 to Java 8.
-
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.2
-                                 Release Notes
-
-FIXED BUGS
-==========
-
-o COMMONSSITE-107: Adding ./target/commons-release-plugin/scm/RELEASE-NOTES.txt
-                   to svn as opposed to ./RELEASE-NOTES.txt
-
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.1
-                                 Release Notes
-
-NEW FEATURES
-============
-
-o COMMONSSITE-98:  Making the project more multi-module compatible
-
-FIXED BUGS
-==========
-
-o COMMONSSITE-104: Sha1 signature files now reflect actual signatures.
-o COMMONSSITE-102: Commons Release Plugin doesn't work with Commons Release Plugin
-o COMMONSSITE-101: Make -Dcommons.release.dryRun=true our commit toggle
-
-
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.0
-                                 Release Notes
-
-NEW FEATURES
-============
-
-o COMMONSSITE-96:   Create commons-release-component project skeleton.
-o COMMONSSITE-99:   Prepare Standard Build integrations, travis, jacoco, checkstyle, etc.
-o COMMONSSITE-97:   Documentation for commons-release-plugin.
-
-
-Historical list of changes: https://commons.apache.org/release-plugin/changes-report.html
-
-For complete information on the Apache commons-release-plugin, including instructions on how
-to submit bug reports, patches, or suggestions for improvement, see the Apache commons-release-plugin's
-website:
-
-https://commons.apache.org/release-plugin/
-
-Have fun!
--Apache Commons Release Plugin team
-
diff --git a/src/site/resources/release-notes/RELEASE-NOTES-1.6.txt b/src/site/resources/release-notes/RELEASE-NOTES-1.6.txt
deleted file mode 100644
index 925de79..0000000
--- a/src/site/resources/release-notes/RELEASE-NOTES-1.6.txt
+++ /dev/null
@@ -1,155 +0,0 @@
-                         Apache Commons Release Plugin
-                                  Version 1.6
-                                 Release Notes
-
-INTRODUCTION
-============
-This document contains the release notes for the 1.6 version of Apache commons-release-plugin.
-The commons-release-plugin is meant to be a mechanism for automating The Apache Commons Project's
-release process.
-
-The Apache Commons Release Plugin is a collection of Java based Maven mojos for Apache Commons
-Release process. These mojos are intended to be used as a collection of steps to be strung
-together for the purpose of removing the manual steps required to produce an Apache Commons Release.
-
-
-Changes in this version include:
-
-NEW FEATURES
-============
-o COMMONSSITE-128:  Release plugin cleans up staging area before staging
-
-
-CHANGES
-=======
-o Update Apache Commons Codec from 1.11 to 1.12.
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.5
-                                 Release Notes
-
-INTRODUCTION
-============
-This document contains the release notes for the 1.5 version of Apache commons-release-plugin.
-The commons-release-plugin is meant to be a mechanism for automating The Apache Commons Project's
-release process.
-
-The Apache Commons Release Plugin is a collection of Java based Maven mojos for Apache Commons
-Release process. These mojos are intended to be used as a collection of steps to be strung
-together for the purpose of removing the manual steps required to produce an Apache Commons Release.
-
-
-Changes in this version include:
-
-NEW FEATURES
-============
-o COMMONSSITE-123:  introduce configuration parameter to perfom distribution checkin using Maven settings server credentials
-
-FIXED BUGS
-==========
-o ReadmeHtmlVelocityDelegate, accommodate for artifactIds ending in numbers
-o ReadmeHtmlVelocityDelegate, bcel's artifactId != commons-bcel, but is just bcel
-o COMMONSSITE-122:  stage-distributions mojo assumes site directory has basename 'site'
-
-CHANGES
-=======
-o vote-txt, use github as opposed to git-wip
-o Drop sha-256 and leave sha-512 only
-o commons.jacoco.version: 0.8.0 -> 0.8.2; java 11 compatibility
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.4
-                                 Release Notes
-
-FIXED BUGS
-==========
-o Check the result of checking out files from the SCM.
-
-CHANGES
-=======
-o Better error message when files cannot be checked in to the SCM.
-o COMMONSSITE-120: [release-plugin] Use SHA-256 and SHA-512, not MD5, not SHA-1.
-o Update Apache Commons Compress from 1.17 to 1.18.
-
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.3
-                                 Release Notes
-
-NEW FEATURES
-============
-o COMMONSSITE-112:  Add a vote.txt file.
-o COMMONSSITE-108:  Adding README.html and HEADER.html to staged release
-
-
-CHANGES
-=======
-o COMMONSSITE-117: Remove md5 signatures from release artifacts.
-o COMMONSSITE-113: Put unpacked site in scm dev dist directory for navigating purposes.
-o Update platform requirement from Java 7 to Java 8.
-
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.2
-                                 Release Notes
-
-FIXED BUGS
-==========
-
-o COMMONSSITE-107: Adding ./target/commons-release-plugin/scm/RELEASE-NOTES.txt
-                   to svn as opposed to ./RELEASE-NOTES.txt
-
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.1
-                                 Release Notes
-
-NEW FEATURES
-============
-
-o COMMONSSITE-98:  Making the project more multi-module compatible
-
-FIXED BUGS
-==========
-
-o COMMONSSITE-104: Sha1 signature files now reflect actual signatures.
-o COMMONSSITE-102: Commons Release Plugin doesn't work with Commons Release Plugin
-o COMMONSSITE-101: Make -Dcommons.release.dryRun=true our commit toggle
-
-
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.0
-                                 Release Notes
-
-NEW FEATURES
-============
-
-o COMMONSSITE-96:   Create commons-release-component project skeleton.
-o COMMONSSITE-99:   Prepare Standard Build integrations, travis, jacoco, checkstyle, etc.
-o COMMONSSITE-97:   Documentation for commons-release-plugin.
-
-
-Historical list of changes: https://commons.apache.org/release-plugin/changes-report.html
-
-For complete information on the Apache commons-release-plugin, including instructions on how
-to submit bug reports, patches, or suggestions for improvement, see the Apache commons-release-plugin's
-website:
-
-https://commons.apache.org/release-plugin/
-
-Have fun!
--Apache Commons Release Plugin team
-
diff --git a/src/site/resources/release-notes/RELEASE-NOTES-1.7.txt b/src/site/resources/release-notes/RELEASE-NOTES-1.7.txt
deleted file mode 100644
index d37a18a..0000000
--- a/src/site/resources/release-notes/RELEASE-NOTES-1.7.txt
+++ /dev/null
@@ -1,192 +0,0 @@
-                         Apache Commons Release Plugin
-                                  Version 1.7
-                                 Release Notes
-
-INTRODUCTION
-============
-This document contains the release notes for the 1.7 version of Apache commons-release-plugin.
-The commons-release-plugin is meant to be a mechanism for automating The Apache Commons Project's
-release process.
-
-The Apache Commons Release Plugin is a collection of Java based Maven mojos for Apache Commons
-Release process. These mojos are intended to be used as a collection of steps to be strung
-together for the purpose of removing the manual steps required to produce an Apache Commons Release.
-
-
-Changes in this version include:
-
-CHANGES
-=======
-o checkstyle.version from 8.10.1 to 8.18
-o VOTE.txt: Sample git clone command should checkout in a folder named after the tag
-o VOTE.txt: Sort the file names being hashed
-o maven.dependency.version from 3.5.3 to 3.6.0
-o org.apache.maven.scm from 1.10.0 to 1.11.2
-o maven-pmd-plugin from 3.9.0 to 3.11.0
-o commons-build-plugin from 1.8 to 1.10
-o commons.jacoco.version from 0.8.2 to 0.8.3
-o velocity-engine-core from 2.0 to 2.1
-o maven.dependency.version from 3.6.0 to 3.6.1
-o checkstyle.version from 8.18 to 8.19
-o maven-pmd-plugin from 3.11.0 to 3.12.0
-o com.puppycrawl.tools:checkstyle from 8.19 to 8.20
-o Update Apache Commons Collections from 4.3 to 4.4
-o Update Apache Commons Compress from 1.18 to 1.19
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.6
-                                 Release Notes
-
-INTRODUCTION
-============
-This document contains the release notes for the 1.6 version of Apache commons-release-plugin.
-The commons-release-plugin is meant to be a mechanism for automating The Apache Commons Project's
-release process.
-
-The Apache Commons Release Plugin is a collection of Java based Maven mojos for Apache Commons
-Release process. These mojos are intended to be used as a collection of steps to be strung
-together for the purpose of removing the manual steps required to produce an Apache Commons Release.
-
-
-Changes in this version include:
-
-NEW FEATURES
-============
-o COMMONSSITE-128:  Release plugin cleans up staging area before staging
-
-
-CHANGES
-=======
-o Update Apache Commons Codec from 1.11 to 1.12.
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.5
-                                 Release Notes
-
-INTRODUCTION
-============
-This document contains the release notes for the 1.5 version of Apache commons-release-plugin.
-The commons-release-plugin is meant to be a mechanism for automating The Apache Commons Project's
-release process.
-
-The Apache Commons Release Plugin is a collection of Java based Maven mojos for Apache Commons
-Release process. These mojos are intended to be used as a collection of steps to be strung
-together for the purpose of removing the manual steps required to produce an Apache Commons Release.
-
-
-Changes in this version include:
-
-NEW FEATURES
-============
-o COMMONSSITE-123:  introduce configuration parameter to perfom distribution checkin using Maven settings server credentials
-
-FIXED BUGS
-==========
-o ReadmeHtmlVelocityDelegate, accommodate for artifactIds ending in numbers
-o ReadmeHtmlVelocityDelegate, bcel's artifactId != commons-bcel, but is just bcel
-o COMMONSSITE-122:  stage-distributions mojo assumes site directory has basename 'site'
-
-CHANGES
-=======
-o vote-txt, use github as opposed to git-wip
-o Drop sha-256 and leave sha-512 only
-o commons.jacoco.version: 0.8.0 -> 0.8.2; java 11 compatibility
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.4
-                                 Release Notes
-
-FIXED BUGS
-==========
-o Check the result of checking out files from the SCM.
-
-CHANGES
-=======
-o Better error message when files cannot be checked in to the SCM.
-o COMMONSSITE-120: [release-plugin] Use SHA-256 and SHA-512, not MD5, not SHA-1.
-o Update Apache Commons Compress from 1.17 to 1.18.
-
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.3
-                                 Release Notes
-
-NEW FEATURES
-============
-o COMMONSSITE-112:  Add a vote.txt file.
-o COMMONSSITE-108:  Adding README.html and HEADER.html to staged release
-
-
-CHANGES
-=======
-o COMMONSSITE-117: Remove md5 signatures from release artifacts.
-o COMMONSSITE-113: Put unpacked site in scm dev dist directory for navigating purposes.
-o Update platform requirement from Java 7 to Java 8.
-
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.2
-                                 Release Notes
-
-FIXED BUGS
-==========
-
-o COMMONSSITE-107: Adding ./target/commons-release-plugin/scm/RELEASE-NOTES.txt
-                   to svn as opposed to ./RELEASE-NOTES.txt
-
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.1
-                                 Release Notes
-
-NEW FEATURES
-============
-
-o COMMONSSITE-98:  Making the project more multi-module compatible
-
-FIXED BUGS
-==========
-
-o COMMONSSITE-104: Sha1 signature files now reflect actual signatures.
-o COMMONSSITE-102: Commons Release Plugin doesn't work with Commons Release Plugin
-o COMMONSSITE-101: Make -Dcommons.release.dryRun=true our commit toggle
-
-
-
-=============================================================================
-
-                         Apache Commons Release Plugin
-                                  Version 1.0
-                                 Release Notes
-
-NEW FEATURES
-============
-
-o COMMONSSITE-96:   Create commons-release-component project skeleton.
-o COMMONSSITE-99:   Prepare Standard Build integrations, travis, jacoco, checkstyle, etc.
-o COMMONSSITE-97:   Documentation for commons-release-plugin.
-
-
-Historical list of changes: https://commons.apache.org/release-plugin/changes-report.html
-
-For complete information on the Apache commons-release-plugin, including instructions on how
-to submit bug reports, patches, or suggestions for improvement, see the Apache commons-release-plugin's
-website:
-
-https://commons.apache.org/release-plugin/
-
-Have fun!
--Apache Commons Release Plugin team
-