source: trunk/java-utils-test/pom.xml @ 920

Last change on this file since 920 was 920, checked in by pharms, 12 years ago
  • rename to autoquest
  • Property svn:mime-type set to text/plain
File size: 5.8 KB
Line 
1<project
2    xmlns="http://maven.apache.org/POM/4.0.0"
3    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
5>
6    <modelVersion>4.0.0</modelVersion>
7    <groupId>de.ugoe.cs</groupId>
8    <artifactId>java-utils-test</artifactId>
9    <version>0.0.1-SNAPSHOT</version>
10    <name>java-utils-test</name>
11    <scm>
12        <url>https://autoautoquest.informatik.uni-goettingen.de/svn/autoautoquest/trunk/java-utils-test</url>
13    </scm>
14    <dependencies>
15        <dependency>
16            <groupId>de.ugoe.cs</groupId>
17            <artifactId>java-utils</artifactId>
18            <version>0.0.1-SNAPSHOT</version>
19            <scope>test</scope>
20        </dependency>
21        <dependency>
22            <groupId>junit</groupId>
23            <artifactId>junit</artifactId>
24            <version>4.8.1</version>
25            <scope>test</scope>
26        </dependency>
27        <dependency>
28            <groupId>junit-addons</groupId>
29            <artifactId>junit-addons</artifactId>
30            <version>1.4</version>
31        </dependency>
32    </dependencies>
33    <build>
34        <pluginManagement>
35            <plugins>
36                <plugin>
37                    <groupId>org.eclipse.m2e</groupId>
38                    <artifactId>lifecycle-mapping</artifactId>
39                    <version>1.0.0</version>
40                    <configuration>
41                        <lifecycleMappingMetadata>
42                            <pluginExecutions>
43                                <pluginExecution>
44                                    <pluginExecutionFilter>
45                                        <groupId>org.apache.maven.plugins</groupId>
46                                        <artifactId>maven-dependency-plugin</artifactId>
47                                        <versionRange>[1.0.0,)</versionRange>
48                                        <goals>
49                                            <goal>unpack</goal>
50                                        </goals>
51                                    </pluginExecutionFilter>
52                                    <action>
53                                        <ignore />
54                                    </action>
55                                </pluginExecution>
56                                <pluginExecution>
57                                    <pluginExecutionFilter>
58                                        <groupId>org.codehaus.mojo</groupId>
59                                        <artifactId>emma-maven-plugin</artifactId>
60                                        <versionRange>[1.0-alpha-3,)</versionRange>
61                                        <goals>
62                                            <goal>emma</goal>
63                                        </goals>
64                                    </pluginExecutionFilter>
65                                    <action>
66                                        <ignore />
67                                    </action>
68                                </pluginExecution>
69                            </pluginExecutions>
70                        </lifecycleMappingMetadata>
71                    </configuration>
72                </plugin>
73            </plugins>
74        </pluginManagement>
75        <plugins>
76            <plugin>
77                <groupId>org.apache.maven.plugins</groupId>
78                <artifactId>maven-compiler-plugin</artifactId>
79                <version>2.3.2</version>
80                <configuration>
81                    <source>1.6</source>
82                    <target>1.6</target>
83                </configuration>
84            </plugin>
85            <plugin>
86                <groupId>org.apache.maven.plugins</groupId>
87                <artifactId>maven-dependency-plugin</artifactId>
88                <version>2.4</version>
89                <executions>
90                    <execution>
91                        <id>unpack</id>
92                        <phase>process-classes</phase>
93                        <goals>
94                            <goal>unpack</goal>
95                        </goals>
96                        <configuration>
97                            <artifactItems>
98                                <artifactItem>
99                                    <groupId>de.ugoe.cs</groupId>
100                                    <artifactId>java-utils</artifactId>
101                                    <version>0.0.1-SNAPSHOT</version>
102                                    <outputDirectory>${project.build.directory}/classes</outputDirectory>
103                                </artifactItem>
104                            </artifactItems>
105                        </configuration>
106                    </execution>
107                </executions>
108            </plugin>
109            <plugin>
110                <groupId>org.codehaus.mojo</groupId>
111                <artifactId>emma-maven-plugin</artifactId>
112                <version>1.0-alpha-3</version>
113                <inherited>true</inherited>
114                <executions>
115                    <execution>
116                        <phase>process-classes</phase>
117                        <goals>
118                            <goal>emma</goal>
119                        </goals>
120                    </execution>
121                </executions>
122            </plugin>
123            <plugin>
124                <groupId>org.apache.maven.plugins</groupId>
125                <artifactId>maven-jar-plugin</artifactId>
126                <version>2.3.2</version>
127                <executions>
128                    <execution>
129                        <goals>
130                            <goal>test-jar</goal>
131                        </goals>
132                    </execution>
133                </executions>
134            </plugin>
135        </plugins>
136    </build>
137</project>
Note: See TracBrowser for help on using the repository browser.