34 lines
918 B
Plaintext
34 lines
918 B
Plaintext
<project>
|
|
<parent>
|
|
<artifactId>plexus</artifactId>
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
<version>1.0.4</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>plexus-utils</artifactId>
|
|
<name>Plexus Common Utilities</name>
|
|
<version>1.0.5</version>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<excludes>
|
|
<exclude>org/codehaus/plexus/util/FileBasedTestCase.java</exclude>
|
|
<exclude>**/Test*.java</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>classworlds</groupId>
|
|
<artifactId>classworlds</artifactId>
|
|
<version>1.1-alpha-2</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<distributionManagement>
|
|
<status>deployed</status>
|
|
</distributionManagement>
|
|
</project> |