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-ffa450edef68
master
Vincent Siveton 2008-03-01 15:41:37 +00:00
parent 60a5d5fd48
commit a05623ebf9
1 changed files with 17 additions and 1 deletions

18
pom.xml
View File

@ -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>