COLLECTIONS-658: Add Automatic-Module-Name MANIFEST entry for Java 9 compatibility.
This commit is contained in:
parent
d95543d818
commit
80ec288ee7
19
pom.xml
19
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>
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue