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

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