You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by an...@apache.org on 2014/10/06 19:01:34 UTC

[2/4] git commit: Overriding modernizer-plugin config in jclouds-resources

Overriding modernizer-plugin config in jclouds-resources

This fixes a self-dependency


Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo
Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/53660f83
Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/53660f83
Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/53660f83

Branch: refs/heads/reactivate-checkstyle
Commit: 53660f8369b763f47ccc62a1c76cebdfefb8194a
Parents: b41a1c0
Author: Andrew Phillips <an...@apache.org>
Authored: Sun Oct 5 16:28:57 2014 -0500
Committer: Andrew Phillips <an...@apache.org>
Committed: Mon Oct 6 13:00:39 2014 -0400

----------------------------------------------------------------------
 resources/pom.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jclouds/blob/53660f83/resources/pom.xml
----------------------------------------------------------------------
diff --git a/resources/pom.xml b/resources/pom.xml
index 6404210..6282650 100644
--- a/resources/pom.xml
+++ b/resources/pom.xml
@@ -41,5 +41,17 @@
         </includes>
       </resource>
     </resources>
+    <plugins>
+      <plugin>
+        <groupId>org.gaul</groupId>
+        <artifactId>modernizer-maven-plugin</artifactId>
+        <configuration>
+          <javaVersion>1.7</javaVersion>
+          <!-- ${project.basedir} required here as 1.1.0 of the modernizer plugin
+            can't find the exclusions file otherwise -->
+          <exclusionsFile>${project.basedir}/modernizer_exclusions.txt</exclusionsFile>
+        </configuration>
+      </plugin>
+    </plugins>
   </build>
 </project>