1
0

LOGGING-165: Add Automatic-Module-Name Manifest Header for Java 9 compatibility.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/logging/trunk@1809785 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter
2017-09-26 21:03:58 +00:00
parent ae02acf389
commit 14f927a77f
2 changed files with 10 additions and 0 deletions

View File

@@ -264,6 +264,13 @@ under the License.
</configuration>
</execution>
</executions>
<configuration>
<archive combine.children="append">
<manifestEntries>
<Automatic-Module-Name>org.apache.commons.logging</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>

View File

@@ -44,6 +44,9 @@ The <action> type attribute can be add,update,fix,remove.
</properties>
<body>
<release version="1.2.1" date="TBD" description="This is a maintenance release containing bug fixes. Java 1.2 or later is required.">
<action issue="LOGGING-165" dev="britter" type="add">
Add Automatic-Module-Name Manifest Header for Java 9 compatibility.
</action>
<action issue="LOGGING-163" dev="ggregory" type="fix" due-to="Kaloyan Spiridonov">
BufferedReader is not closed properly.
</action>