Author: pascalschumacher Date: Sun Oct 22 08:23:10 2017 New Revision: 1812886
URL: http://svn.apache.org/viewvc?rev=1812886&view=rev Log: pom.xml: add java 9 profile, use java 9 compatible jacoco version Modified: commons/proper/codec/trunk/pom.xml Modified: commons/proper/codec/trunk/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/pom.xml?rev=1812886&r1=1812885&r2=1812886&view=diff ============================================================================== --- commons/proper/codec/trunk/pom.xml (original) +++ commons/proper/codec/trunk/pom.xml Sun Oct 22 08:23:10 2017 @@ -238,6 +238,8 @@ limitations under the License. <checkstyle.header.file>${basedir}/LICENSE-header.txt</checkstyle.header.file> <checkstyle.version>2.17</checkstyle.version> <commons.clirr.version>2.8</commons.clirr.version> + <!-- use java 9 compatible jacoco version --> + <commons.jacoco.version>0.7.9</commons.jacoco.version> </properties> <build> <pluginManagement> @@ -406,5 +408,17 @@ limitations under the License. </plugins> </build> </profile> + <profile> + <id>java9</id> + <activation> + <jdk>9</jdk> + </activation> + <properties> + <!-- versions below 3.0.0 do not work with java 9 --> + <commons.javadoc.version>3.0.0-M1</commons.javadoc.version> + <!-- coverall version 4.3.0 does not work with java 9, see https://github.com/trautonen/coveralls-maven-plugin/issues/112 --> + <coveralls.skip>true</coveralls.skip> + </properties> + </profile> </profiles> </project>