You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jd...@apache.org on 2006/09/01 18:08:00 UTC

svn commit: r439362 - /maven/components/trunk/maven-artifact-manager/pom.xml

Author: jdcasey
Date: Fri Sep  1 09:07:59 2006
New Revision: 439362

URL: http://svn.apache.org/viewvc?rev=439362&view=rev
Log:
Ignore **/testutils/** for unit tests.

Modified:
    maven/components/trunk/maven-artifact-manager/pom.xml

Modified: maven/components/trunk/maven-artifact-manager/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/trunk/maven-artifact-manager/pom.xml?rev=439362&r1=439361&r2=439362&view=diff
==============================================================================
--- maven/components/trunk/maven-artifact-manager/pom.xml (original)
+++ maven/components/trunk/maven-artifact-manager/pom.xml Fri Sep  1 09:07:59 2006
@@ -59,4 +59,18 @@
       <artifactId>easymock</artifactId>
     </dependency>
   </dependencies>
+  <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <artifactId>maven-surefire-plugin</artifactId>
+          <configuration>
+            <excludes> 
+              <exclude>**/testutils/**</exclude>
+            </excludes>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  </build>
 </project>