Why not do this in the parent POM and release it then? ;-) Gary
On Wed, Sep 20, 2017 at 1:17 AM, <brit...@apache.org> wrote: > Repository: commons-collections > Updated Branches: > refs/heads/master d95543d81 -> 80ec288ee > > > COLLECTIONS-658: Add Automatic-Module-Name MANIFEST entry for Java 9 > compatibility. > > > Project: http://git-wip-us.apache.org/repos/asf/commons-collections/repo > Commit: http://git-wip-us.apache.org/repos/asf/commons-collections/ > commit/80ec288e > Tree: http://git-wip-us.apache.org/repos/asf/commons-collections/ > tree/80ec288e > Diff: http://git-wip-us.apache.org/repos/asf/commons-collections/ > diff/80ec288e > > Branch: refs/heads/master > Commit: 80ec288ee76bc278d70aa234cbea407a2c9e82a2 > Parents: d95543d > Author: Benedikt Ritter <brit...@apache.org> > Authored: Wed Sep 20 09:16:53 2017 +0200 > Committer: Benedikt Ritter <brit...@apache.org> > Committed: Wed Sep 20 09:16:53 2017 +0200 > > ---------------------------------------------------------------------- > pom.xml | 19 +++++++++++++++++++ > src/changes/changes.xml | 3 +++ > 2 files changed, 22 insertions(+) > ---------------------------------------------------------------------- > > > http://git-wip-us.apache.org/repos/asf/commons-collections/ > blob/80ec288e/pom.xml > ---------------------------------------------------------------------- > diff --git a/pom.xml b/pom.xml > index d98ad2d..d122e56 100644 > --- a/pom.xml > +++ b/pom.xml > @@ -570,6 +570,25 @@ > </ignorePathsToDelete> > </configuration> > </plugin> > + <plugin> > + <groupId>org.apache.maven.plugins</groupId> > + <artifactId>maven-jar-plugin</artifactId> > + <executions> > + <execution> > + <goals> > + <goal>test-jar</goal> > + </goals> > + </execution> > + </executions> > + <!-- Temporary fix for COLLECTIONS-658, remove this after this > has implemented in parent pom --> > + <configuration> > + <archive combine.children="append"> > + <manifestEntries> > + <Automatic-Module-Name>org.apache.commons.collections4</ > Automatic-Module-Name> > + </manifestEntries> > + </archive> > + </configuration> > + </plugin> > </plugins> > </build> > > > http://git-wip-us.apache.org/repos/asf/commons-collections/ > blob/80ec288e/src/changes/changes.xml > ---------------------------------------------------------------------- > diff --git a/src/changes/changes.xml b/src/changes/changes.xml > index efc7a9b..c355be7 100644 > --- a/src/changes/changes.xml > +++ b/src/changes/changes.xml > @@ -21,6 +21,9 @@ > </properties> > <body> > <release version="4.2" date="YYYY-MM-DD" description="New features"> > + <action issue="COLLECTIONS-658" dev="britter" type="add"> > + Add Automatic-Module-Name MANIFEST entry for Java 9 compatibility > + </action> > <action issue="COLLECTIONS-656" dev="ggregory" type="fix"> > Fix site build on Java 8 > </action> > >