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-io.git
The following commit(s) were added to refs/heads/master by this push: new 70c6f0c - Replace cobertura with JaCoCo since JApiCmp blows up when it sees class files modified by Cobertura. - Comment out System.out.println. - Use current JApiCmp. - Use current Surefire. - Use current JaCoC. 70c6f0c is described below commit 70c6f0c64504c9bd7e344699a845a139a76b43ec Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Tue Aug 6 08:40:42 2019 -0400 - Replace cobertura with JaCoCo since JApiCmp blows up when it sees class files modified by Cobertura. - Comment out System.out.println. - Use current JApiCmp. - Use current Surefire. - Use current JaCoC. --- pom.xml | 12 +++++------- src/site/resources/profile.clirr | 0 src/site/resources/{profile.cobertura => profile.jacoco} | 0 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index d316c7a..c63f2c1 100644 --- a/pom.xml +++ b/pom.xml @@ -272,11 +272,12 @@ file comparators, endian transformation classes, and much more. org.apache.commons.io.output; org.apache.commons.io.*;version=${project.version};-noimport:=true </commons.osgi.export> - <commons.scmPubUrl>https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-io/</commons.scmPubUrl> <commons.scmPubCheckoutDirectory>site-content</commons.scmPubCheckoutDirectory> <checkstyle.plugin.version>2.17</checkstyle.plugin.version> - + <commons.jacoco.version>0.8.4</commons.jacoco.version> + <commons.surefire.version>2.22.2</commons.surefire.version> + <commons.japicmp.version>0.14.1</commons.japicmp.version> <japicmp.skip>false</japicmp.skip> </properties> @@ -325,7 +326,7 @@ file comparators, endian transformation classes, and much more. <forkCount>1</forkCount> <reuseForks>false</reuseForks> <!-- limit memory size see IO-161 --> - <argLine>-Xmx25M</argLine> + <argLine>${argLine} -Xmx25M</argLine> <includes> <!-- Only include test classes, not test data --> <include>**/*Test*.class</include> @@ -383,10 +384,6 @@ file comparators, endian transformation classes, and much more. <reporting> <plugins> <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>cobertura-maven-plugin</artifactId> - </plugin> - <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${checkstyle.plugin.version}</version> @@ -398,6 +395,7 @@ file comparators, endian transformation classes, and much more. <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> + <version>3.0.5</version> <configuration> <threshold>Normal</threshold> <effort>Default</effort> diff --git a/src/site/resources/profile.clirr b/src/site/resources/profile.clirr deleted file mode 100644 index e69de29..0000000 diff --git a/src/site/resources/profile.cobertura b/src/site/resources/profile.jacoco similarity index 100% rename from src/site/resources/profile.cobertura rename to src/site/resources/profile.jacoco