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

Last change on this file since 1392 was 1347, checked in by pharms, 10 years ago
  • trial with getting emma back to run
  • 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    <licenses>
12        <license>
13            <name>The Apache Software License, Version 2.0</name>
14            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
15        </license>
16    </licenses>
17    <scm>
18        <url>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/java-utils-test</url>
19    </scm>
20    <dependencies>
21        <dependency>
22            <groupId>de.ugoe.cs</groupId>
23            <artifactId>java-utils</artifactId>
24            <version>0.0.1-SNAPSHOT</version>
25            <scope>test</scope>
26        </dependency>
27        <dependency>
28            <groupId>junit</groupId>
29            <artifactId>junit</artifactId>
30            <version>4.8.1</version>
31            <scope>test</scope>
32        </dependency>
33        <dependency>
34            <groupId>junit-addons</groupId>
35            <artifactId>junit-addons</artifactId>
36            <version>1.4</version>
37        </dependency>
38    </dependencies>
39    <build>
40        <pluginManagement>
41            <plugins>
42                <plugin>
43                    <groupId>org.eclipse.m2e</groupId>
44                    <artifactId>lifecycle-mapping</artifactId>
45                    <version>1.0.0</version>
46                    <configuration>
47                        <lifecycleMappingMetadata>
48                            <pluginExecutions>
49                                <pluginExecution>
50                                    <pluginExecutionFilter>
51                                        <groupId>org.apache.maven.plugins</groupId>
52                                        <artifactId>maven-dependency-plugin</artifactId>
53                                        <versionRange>[1.0.0,)</versionRange>
54                                        <goals>
55                                            <goal>unpack</goal>
56                                        </goals>
57                                    </pluginExecutionFilter>
58                                    <action>
59                                        <ignore />
60                                    </action>
61                                </pluginExecution>
62                                <pluginExecution>
63                                    <pluginExecutionFilter>
64                                        <groupId>org.codehaus.mojo</groupId>
65                                        <artifactId>emma-maven-plugin</artifactId>
66                                        <versionRange>[1.0-alpha-3,)</versionRange>
67                                        <goals>
68                                            <goal>emma</goal>
69                                        </goals>
70                                    </pluginExecutionFilter>
71                                    <action>
72                                        <ignore />
73                                    </action>
74                                </pluginExecution>
75                            </pluginExecutions>
76                        </lifecycleMappingMetadata>
77                    </configuration>
78                </plugin>
79            </plugins>
80        </pluginManagement>
81        <plugins>
82            <plugin>
83                <groupId>org.apache.maven.plugins</groupId>
84                <artifactId>maven-compiler-plugin</artifactId>
85                <version>2.3.2</version>
86                <configuration>
87                    <source>1.7</source>
88                    <target>1.7</target>
89                </configuration>
90            </plugin>
91            <plugin>
92                <groupId>org.apache.maven.plugins</groupId>
93                <artifactId>maven-dependency-plugin</artifactId>
94                <version>2.4</version>
95                <executions>
96                    <execution>
97                        <id>unpack</id>
98                        <phase>process-classes</phase>
99                        <goals>
100                            <goal>unpack</goal>
101                        </goals>
102                        <configuration>
103                            <artifactItems>
104                                <artifactItem>
105                                    <groupId>de.ugoe.cs</groupId>
106                                    <artifactId>java-utils</artifactId>
107                                    <version>0.0.1-SNAPSHOT</version>
108                                    <outputDirectory>${project.build.directory}/classes</outputDirectory>
109                                </artifactItem>
110                            </artifactItems>
111                        </configuration>
112                    </execution>
113                </executions>
114            </plugin>
115            <plugin>
116                <groupId>org.apache.maven.plugins</groupId>
117                <artifactId>maven-surefire-plugin</artifactId>
118                <version>2.12</version>
119                <configuration>
120                    <argLine>-XX:-UseSplitVerifier</argLine>
121                </configuration>
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.