Skip to content

Commit

Permalink
[MNG-5761] Dependency management is not transitive.
Browse files Browse the repository at this point in the history
o Updated to add a missing test dependency (used but undeclared) managed to
  non-transitive test scope transitively. The compilation error without
  that declaration in fact is expected behaviour. Don't let them fool you.

  I can build all plugins using 3.4.0-SNAPSHOT by upgrading the plugin tools
  manually on the command line like:

  mvn -DmavenPluginToolsVersion=3.5 test-compile



git-svn-id: https://svn.apache.org/repos/asf/maven/plugins/trunk@1776591 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
ChristianSchulte committed Dec 30, 2016
1 parent e5cc8b6 commit 72e84a3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,12 @@ under the License.
<version>${mavenVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>

<profiles>
Expand Down

0 comments on commit 72e84a3

Please sign in to comment.