94 lines
3.3 KiB
XML
94 lines
3.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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">
|
|
<parent>
|
|
<artifactId>plexus-containers</artifactId>
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
<version>1.0-alpha-30</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>plexus-container-default</artifactId>
|
|
<name>Default Plexus Container</name>
|
|
<version>1.0-alpha-30</version>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<forkMode>once</forkMode>
|
|
<excludes>
|
|
<exclude>**/Test*.java</exclude>
|
|
<exclude>**/Abstract*.java</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>shade-maven-plugin</artifactId>
|
|
<version>1.0-alpha-9</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<artifactSet>
|
|
<excludes>
|
|
<exclude>classworlds:classworlds</exclude>
|
|
<exclude>junit:junit</exclude>
|
|
<exclude>jmock:jmock</exclude>
|
|
<exclude>org.codehaus.plexus:plexus-classworlds</exclude>
|
|
<exclude>org.codehaus.plexus:plexus-utils</exclude>
|
|
</excludes>
|
|
</artifactSet>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
<artifactId>plexus-utils</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
<artifactId>plexus-classworlds</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jmock</groupId>
|
|
<artifactId>jmock</artifactId>
|
|
<version>1.0.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<configuration>
|
|
<links>
|
|
<link>http://java.sun.com/j2ee/1.4/docs/api</link>
|
|
<link>http://java.sun.com/j2se/1.5.0/docs/api</link>
|
|
<link>http://jakarta.apache.org/commons/collections/apidocs-COLLECTIONS_3_0/</link>
|
|
<link>http://jakarta.apache.org/commons/dbcp/apidocs/</link>
|
|
<link>http://jakarta.apache.org/commons/fileupload/apidocs/</link>
|
|
<link>http://jakarta.apache.org/commons/httpclient/apidocs/</link>
|
|
<link>http://jakarta.apache.org/commons/logging/apidocs/</link>
|
|
<link>http://jakarta.apache.org/commons/pool/apidocs/</link>
|
|
<link>http://www.junit.org/junit/javadoc/</link>
|
|
<link>http://logging.apache.org/log4j/docs/api/</link>
|
|
<link>http://jakarta.apache.org/regexp/apidocs/</link>
|
|
<link>http://jakarta.apache.org/velocity/api/</link>
|
|
</links>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
</project>
|
|
|