You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2013/07/23 03:01:05 UTC

svn commit: r1505872 - /commons/dev/plugins/commonsdev-example-plugin/trunk/pom.xml

Author: sebb
Date: Tue Jul 23 01:01:04 2013
New Revision: 1505872

URL: http://svn.apache.org/r1505872
Log:
Allow unit testing

Modified:
    commons/dev/plugins/commonsdev-example-plugin/trunk/pom.xml

Modified: commons/dev/plugins/commonsdev-example-plugin/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/dev/plugins/commonsdev-example-plugin/trunk/pom.xml?rev=1505872&r1=1505871&r2=1505872&view=diff
==============================================================================
--- commons/dev/plugins/commonsdev-example-plugin/trunk/pom.xml (original)
+++ commons/dev/plugins/commonsdev-example-plugin/trunk/pom.xml Tue Jul 23 01:01:04 2013
@@ -15,8 +15,7 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
@@ -128,6 +127,12 @@
            for execution with using provided scope -->
       <scope>provided</scope>
     </dependency>
+    <dependency>
+      <groupId>org.apache.maven.plugin-testing</groupId>
+      <artifactId>maven-plugin-testing-harness</artifactId>
+      <version>1.2</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 
   <build>