Repository: commons-crypto Updated Branches: refs/heads/master eee2f509c -> dc28a2b7b
Bind clirr:check to verify phase, publish clirr report. I also had to disable the Mac OS CI build because of CRYPTO-142. Closes #88 Project: http://git-wip-us.apache.org/repos/asf/commons-crypto/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-crypto/commit/dc28a2b7 Tree: http://git-wip-us.apache.org/repos/asf/commons-crypto/tree/dc28a2b7 Diff: http://git-wip-us.apache.org/repos/asf/commons-crypto/diff/dc28a2b7 Branch: refs/heads/master Commit: dc28a2b7be5cbe21403f29db99635f8887b45a61 Parents: eee2f50 Author: Marcelo Vanzin <[email protected]> Authored: Thu Oct 4 12:21:07 2018 -0700 Committer: Marcelo Vanzin <[email protected]> Committed: Thu Oct 4 12:21:07 2018 -0700 ---------------------------------------------------------------------- .travis.yml | 5 +---- pom.xml | 29 ++++++++++++++++++++++------- 2 files changed, 23 insertions(+), 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-crypto/blob/dc28a2b7/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml index d86e91f..d6f4782 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,14 +24,11 @@ matrix: - "curl -L --cookie 'oraclelicense=accept-securebackup-cookie;' http://download.oracle.com/otn-pub/java/jce/8/jce_policy-8.zip -o /tmp/policy.zip && sudo unzip -j -o /tmp/policy.zip *.jar -d `jdk_switcher home oraclejdk8`/jre/lib/security && rm /tmp/policy.zip" after_success: - mvn clean test jacoco:report coveralls:report - - name: "OS X / Java 8" - os: osx - osx_image: xcode9.3 jdk: - oraclejdk8 script: - mvn apache-rat:check + - mvn verify - mvn site - - mvn clirr:check http://git-wip-us.apache.org/repos/asf/commons-crypto/blob/dc28a2b7/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index ea791a1..bb930ec 100644 --- a/pom.xml +++ b/pom.xml @@ -318,13 +318,6 @@ The following provides more details on the included cryptographic software: <artifactId>coveralls-maven-plugin</artifactId> <version>3.1.0</version> </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>clirr-maven-plugin</artifactId> - <configuration> - <ignoredDifferencesFile>${basedir}/clirr-excludes.xml</ignoredDifferencesFile> - </configuration> - </plugin> </plugins> </build> <reporting> @@ -550,6 +543,21 @@ The following provides more details on the included cryptographic software: </ignorePathsToDelete> </configuration> </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>clirr-maven-plugin</artifactId> + <executions> + <execution> + <phase>verify</phase> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> + <configuration> + <ignoredDifferencesFile>${basedir}/clirr-excludes.xml</ignoredDifferencesFile> + </configuration> + </plugin> </plugins> </build> <reporting> @@ -645,6 +653,13 @@ The following provides more details on the included cryptographic software: </excludes> </configuration> </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>clirr-maven-plugin</artifactId> + <configuration> + <ignoredDifferencesFile>${basedir}/clirr-excludes.xml</ignoredDifferencesFile> + </configuration> + </plugin> </plugins> </reporting> <dependencies>
