You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mrunit.apache.org by jd...@apache.org on 2012/09/10 03:48:56 UTC

git commit: MRUNIT-149: bind analyze-only goal from dependency plugin to prepare-package to make sure dependencies are correct

Updated Branches:
  refs/heads/trunk aac4fb598 -> 04f025f5d


MRUNIT-149: bind analyze-only goal from dependency plugin to
prepare-package to make sure dependencies are correct

Project: http://git-wip-us.apache.org/repos/asf/mrunit/repo
Commit: http://git-wip-us.apache.org/repos/asf/mrunit/commit/04f025f5
Tree: http://git-wip-us.apache.org/repos/asf/mrunit/tree/04f025f5
Diff: http://git-wip-us.apache.org/repos/asf/mrunit/diff/04f025f5

Branch: refs/heads/trunk
Commit: 04f025f5dfade44a95e971b3967be944f67fca10
Parents: aac4fb5
Author: Jim Donofrio <jd...@apache.org>
Authored: Sun Sep 9 21:46:45 2012 -0400
Committer: Jim Donofrio <jd...@apache.org>
Committed: Sun Sep 9 21:46:45 2012 -0400

----------------------------------------------------------------------
 pom.xml |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mrunit/blob/04f025f5/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 4c62206..8da30c2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -222,6 +222,24 @@
       </plugin>
 
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-dependency-plugin</artifactId>
+        <version>2.5.1</version>
+        <configuration>
+          <failOnWarning>true</failOnWarning>
+          <ignoreNonCompile>true</ignoreNonCompile>
+        </configuration>
+        <executions>
+          <execution>
+            <phase>prepare-package</phase>
+            <goals>
+              <goal>analyze-only</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+
+      <plugin>
         <groupId>net.ju-n.maven.plugins</groupId>
         <artifactId>checksum-maven-plugin</artifactId>
         <version>1.0.1</version>