You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2016/06/18 15:38:47 UTC

commons-crypto git commit: Ignore package-info.java files so they don't cause unnecessary recompiles

Repository: commons-crypto
Updated Branches:
  refs/heads/master 2371dcd09 -> bccccdbfd


Ignore package-info.java files so they don't cause unnecessary
recompiles

Project: http://git-wip-us.apache.org/repos/asf/commons-crypto/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-crypto/commit/bccccdbf
Tree: http://git-wip-us.apache.org/repos/asf/commons-crypto/tree/bccccdbf
Diff: http://git-wip-us.apache.org/repos/asf/commons-crypto/diff/bccccdbf

Branch: refs/heads/master
Commit: bccccdbfde51308a8b56ceb68063a9d9dc448f05
Parents: 2371dcd
Author: Sebb <se...@apache.org>
Authored: Sat Jun 18 16:38:42 2016 +0100
Committer: Sebb <se...@apache.org>
Committed: Sat Jun 18 16:38:42 2016 +0100

----------------------------------------------------------------------
 pom.xml | 11 +++++++++++
 1 file changed, 11 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-crypto/blob/bccccdbf/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index e43d9f6..b12e573 100644
--- a/pom.xml
+++ b/pom.xml
@@ -289,6 +289,17 @@ The following provides more details on the included cryptographic software:
     <pluginManagement>
       <plugins>
         <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <version>${commons.compiler.version}</version>
+          <configuration>
+            <!-- Fix incremental compiler bug, see https://jira.codehaus.org/browse/MCOMPILER-205 etc. -->
+            <excludes>
+              <exclude>**/package-info.java</exclude>
+            </excludes>
+          </configuration>
+        </plugin>
+        <plugin>
           <artifactId>maven-antrun-plugin</artifactId>
           <version>${maven-antrun-plugin.version}</version>
           <dependencies>