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

Last change on this file since 1478 was 1478, checked in by pharms, 10 years ago
  • preparation for release of 0.1.0
  • Property svn:mime-type set to text/plain
File size: 6.3 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        <connection>scm:svn:https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/java-utils-test</connection>
20    </scm>
21    <distributionManagement>
22        <snapshotRepository>
23            <id>autoquest-snapshots</id>
24            <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest-snapshots</url>
25        </snapshotRepository>
26        <repository>
27            <id>autoquest</id>
28            <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest-releases</url>
29        </repository>
30    </distributionManagement>
31    <dependencies>
32        <dependency>
33            <groupId>de.ugoe.cs</groupId>
34            <artifactId>java-utils</artifactId>
35            <version>0.1.0</version>
36            <scope>test</scope>
37        </dependency>
38        <dependency>
39            <groupId>junit</groupId>
40            <artifactId>junit</artifactId>
41            <version>4.8.1</version>
42            <scope>test</scope>
43        </dependency>
44        <dependency>
45            <groupId>junit-addons</groupId>
46            <artifactId>junit-addons</artifactId>
47            <version>1.4</version>
48        </dependency>
49    </dependencies>
50    <build>
51        <pluginManagement>
52            <plugins>
53                <plugin>
54                    <groupId>org.eclipse.m2e</groupId>
55                    <artifactId>lifecycle-mapping</artifactId>
56                    <version>1.0.0</version>
57                    <configuration>
58                        <lifecycleMappingMetadata>
59                            <pluginExecutions>
60                                <pluginExecution>
61                                    <pluginExecutionFilter>
62                                        <groupId>org.apache.maven.plugins</groupId>
63                                        <artifactId>maven-dependency-plugin</artifactId>
64                                        <versionRange>[1.0.0,)</versionRange>
65                                        <goals>
66                                            <goal>unpack</goal>
67                                        </goals>
68                                    </pluginExecutionFilter>
69                                    <action>
70                                        <ignore />
71                                    </action>
72                                </pluginExecution>
73                                <pluginExecution>
74                                    <pluginExecutionFilter>
75                                        <groupId>org.codehaus.mojo</groupId>
76                                        <artifactId>emma-maven-plugin</artifactId>
77                                        <versionRange>[1.0-alpha-3,)</versionRange>
78                                        <goals>
79                                            <goal>emma</goal>
80                                        </goals>
81                                    </pluginExecutionFilter>
82                                    <action>
83                                        <ignore />
84                                    </action>
85                                </pluginExecution>
86                            </pluginExecutions>
87                        </lifecycleMappingMetadata>
88                    </configuration>
89                </plugin>
90            </plugins>
91        </pluginManagement>
92        <plugins>
93            <plugin>
94                <groupId>org.apache.maven.plugins</groupId>
95                <artifactId>maven-compiler-plugin</artifactId>
96                <version>2.3.2</version>
97                <configuration>
98                    <source>1.7</source>
99                    <target>1.7</target>
100                </configuration>
101            </plugin>
102            <plugin>
103                <groupId>org.apache.maven.plugins</groupId>
104                <artifactId>maven-dependency-plugin</artifactId>
105                <version>2.4</version>
106                <executions>
107                    <execution>
108                        <id>unpack</id>
109                        <phase>process-classes</phase>
110                        <goals>
111                            <goal>unpack</goal>
112                        </goals>
113                        <configuration>
114                            <artifactItems>
115                                <artifactItem>
116                                    <groupId>de.ugoe.cs</groupId>
117                                    <artifactId>java-utils</artifactId>
118                                    <version>0.1.0</version>
119                                    <outputDirectory>${project.build.directory}/classes</outputDirectory>
120                                </artifactItem>
121                            </artifactItems>
122                        </configuration>
123                    </execution>
124                </executions>
125            </plugin>
126            <plugin>
127                <groupId>org.apache.maven.plugins</groupId>
128                <artifactId>maven-surefire-plugin</artifactId>
129                <version>2.12</version>
130                <configuration>
131                    <argLine>-XX:-UseSplitVerifier</argLine>
132                </configuration>
133            </plugin>
134            <plugin>
135                <groupId>org.apache.maven.plugins</groupId>
136                <artifactId>maven-jar-plugin</artifactId>
137                <version>2.3.2</version>
138                <executions>
139                    <execution>
140                        <goals>
141                            <goal>test-jar</goal>
142                        </goals>
143                    </execution>
144                </executions>
145            </plugin>
146        </plugins>
147    </build>
148</project>
Note: See TracBrowser for help on using the repository browser.