89 lines
2.6 KiB
Plaintext
89 lines
2.6 KiB
Plaintext
<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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
<artifactId>plexus-containers</artifactId>
|
|
<version>1.5.5</version>
|
|
</parent>
|
|
|
|
<artifactId>plexus-container-default</artifactId>
|
|
|
|
<name>Plexus :: Default Container</name>
|
|
<description>
|
|
The Plexus IoC container API and its default implementation.
|
|
</description>
|
|
|
|
<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>org.apache.xbean</groupId>
|
|
<artifactId>xbean-reflect</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.collections</groupId>
|
|
<artifactId>google-collections</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<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.modello</groupId>
|
|
<artifactId>modello-maven-plugin</artifactId>
|
|
<version>1.1</version>
|
|
<configuration>
|
|
<models>
|
|
<model>src/main/mdo/components.mdo</model>
|
|
<model>src/main/mdo/plexus.mdo</model>
|
|
</models>
|
|
<version>1.3.0</version>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>xsd-site</id>
|
|
<phase>pre-site</phase>
|
|
<goals>
|
|
<goal>xsd</goal>
|
|
</goals>
|
|
<configuration>
|
|
<outputDirectory>${basedir}/target/generated-site/resources/xsd</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>descriptor-site</id>
|
|
<phase>pre-site</phase>
|
|
<goals>
|
|
<goal>xdoc</goal>
|
|
</goals>
|
|
<configuration>
|
|
<firstVersion>1.0.0</firstVersion>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|