Repository: flex-falcon Updated Branches: refs/heads/develop a39055866 -> d61a68857
- 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/develop Commit: d61a68857891a445284ee7c26de57487562eb642 Parents: a390558 Author: Christofer Dutz <[email protected]> Authored: Mon Feb 20 12:01:53 2017 +0100 Committer: Christofer Dutz <[email protected]> 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>
