You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jo...@apache.org on 2017/03/21 23:11:05 UTC

[28/50] git commit: [flex-falcon] [refs/heads/master] - - Added the maven-dependency-plugin plugin to report dependency problems (will also report false: declared but unused deps for runtime dependencies)

- Added the maven-dependency-plugin plugin to report dependency problems (will also report false: declared but unused deps for runtime dependencies)


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/d61a6885
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/d61a6885
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/d61a6885

Branch: refs/heads/master
Commit: d61a68857891a445284ee7c26de57487562eb642
Parents: a390558
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Mon Feb 20 12:01:53 2017 +0100
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Mon Feb 20 12:01:53 2017 +0100

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


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/d61a6885/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index ed942cb..8a013ad 100644
--- a/pom.xml
+++ b/pom.xml
@@ -171,6 +171,23 @@
 
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-dependency-plugin</artifactId>
+        <version>3.0.0</version>
+        <executions>
+          <execution>
+            <id>analyze</id>
+            <goals>
+              <goal>analyze-only</goal>
+            </goals>
+            <configuration>
+              <failOnWarning>false</failOnWarning>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
         <version>3.5.1</version>
         <configuration>