blob: b06f641eb58ad9fb36656271123d5f46c12a5db2 [file] [log] [blame]
Jeffrey van Gogh32d3c0c2016-04-04 10:49:31 -07001<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2 ~
3 ~ Copyright 2001-2006 The Codehaus Foundation.
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
17
18<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">
19 <modelVersion>4.0.0</modelVersion>
20
21 <parent>
22 <artifactId>plexus</artifactId>
23 <groupId>org.codehaus.plexus</groupId>
24 <version>2.0.7</version>
25 </parent>
26
27 <groupId>org.codehaus.plexus</groupId>
28 <artifactId>plexus-classworlds</artifactId>
29 <version>2.4</version>
30
31 <name>Plexus Classworlds</name>
32 <description>A class loader framework</description>
33 <inceptionYear>2002</inceptionYear>
34
35 <scm>
36 <connection>scm:git:git@github.com:sonatype/plexus-classworlds.git</connection>
37 <developerConnection>scm:git:git@github.com:sonatype/plexus-classworlds.git</developerConnection>
38 <url>http://github.com/sonatype/plexus-classworlds</url>
39 </scm>
40
41 <dependencies>
42 <dependency>
43 <groupId>junit</groupId>
44 <artifactId>junit</artifactId>
45 <version>3.8.2</version>
46 <scope>test</scope>
47 </dependency>
48 </dependencies>
49
50 <build>
51 <plugins>
52 <plugin>
53 <groupId>org.apache.maven.plugins</groupId>
54 <artifactId>maven-surefire-plugin</artifactId>
55 <version>2.4.2</version>
56 <configuration>
57 <redirectTestOutputToFile>true</redirectTestOutputToFile>
58 <argLine>-ea:org.codehaus.classworlds:org.codehaus.plexus.classworlds</argLine>
59 <forkMode>once</forkMode>
60 </configuration>
61 </plugin>
62 <plugin>
63 <groupId>org.apache.maven.plugins</groupId>
64 <artifactId>maven-compiler-plugin</artifactId>
65 <configuration>
66 <excludes>
67 <exclude>org/codehaus/plexus/classworlds/event/*</exclude>
68 </excludes>
69 </configuration>
70 </plugin>
71 <plugin>
72 <groupId>org.apache.maven.plugins</groupId>
73 <artifactId>maven-dependency-plugin</artifactId>
74 <version>2.0</version>
75 <executions>
76 <execution>
77 <phase>generate-test-resources</phase>
78 <goals>
79 <goal>copy</goal>
80 </goals>
81 <configuration>
82 <artifactItems>
83 <artifactItem>
84 <groupId>ant</groupId>
85 <artifactId>ant</artifactId>
86 <version>1.6.5</version>
87 </artifactItem>
88 <artifactItem>
89 <groupId>commons-logging</groupId>
90 <artifactId>commons-logging</artifactId>
91 <version>1.0.3</version>
92 </artifactItem>
93 <artifactItem>
94 <groupId>xml-apis</groupId>
95 <artifactId>xml-apis</artifactId>
96 <version>1.3.02</version>
97 </artifactItem>
98 </artifactItems>
99 <outputDirectory>${project.build.directory}/test-lib</outputDirectory>
100 </configuration>
101 </execution>
102 </executions>
103 </plugin>
104 </plugins>
105 </build>
106</project>