o bumped to parent:8
o added maven-plugin-testing-harness in the dependencyManagement o added junit dependency git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@632600 13f79535-47bb-0310-9956-ffa450edef68master
parent
60a5d5fd48
commit
a05623ebf9
18
pom.xml
18
pom.xml
|
|
@ -25,7 +25,7 @@
|
|||
<parent>
|
||||
<artifactId>maven-parent</artifactId>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<version>8-SNAPSHOT</version>
|
||||
<version>8</version>
|
||||
<relativePath>../pom/maven/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
|
@ -194,6 +194,12 @@
|
|||
<artifactId>maven-plugin-tools-beanshell</artifactId>
|
||||
<version>${pluginToolsVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.shared</groupId>
|
||||
<artifactId>maven-plugin-testing-harness</artifactId>
|
||||
<version>${pluginTestingHarnessVersion}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-plugin-descriptor</artifactId>
|
||||
|
|
@ -214,7 +220,17 @@
|
|||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<dependencies>
|
||||
<!-- misc -->
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<properties>
|
||||
<pluginToolsVersion>2.2-SNAPSHOT</pluginToolsVersion>
|
||||
<pluginTestingHarnessVersion>1.2-SNAPSHOT</pluginTestingHarnessVersion>
|
||||
</properties>
|
||||
</project>
|
||||
|
|
|
|||
Loading…
Reference in New Issue