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

Last change on this file since 2177 was 2177, checked in by pharms, 7 years ago

[maven-release-plugin] prepare release autoquest-release-0.2.3

  • Property svn:mime-type set to text/plain
File size: 6.8 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.3</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.3</java-utils-version>
15    </properties>
16    <scm>
17        <url>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/tags/autoquest-release-0.2.3/${project.artifactId}</url>
18        <connection>scm:svn:https://autoquest.informatik.uni-goettingen.de/svn/autoquest/tags/autoquest-release-0.2.3/${project.artifactId}</connection>
19    </scm>
20    <distributionManagement>
21        <snapshotRepository>
22            <id>autoquest-snapshots</id>
23            <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest-snapshots</url>
24        </snapshotRepository>
25        <repository>
26            <id>autoquest</id>
27            <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest-releases</url>
28        </repository>
29    </distributionManagement>
30    <repositories>
31        <repository>
32            <id>autoquest-snapshots</id>
33            <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest-snapshots</url>
34        </repository>
35        <repository>
36            <id>autoquest</id>
37            <url>https://trex.informatik.uni-goettingen.de/nexus/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                                <pluginExecution>
84                                    <pluginExecutionFilter>
85                                        <groupId>org.codehaus.mojo</groupId>
86                                        <artifactId>emma-maven-plugin</artifactId>
87                                        <versionRange>[1.0-alpha-3,)</versionRange>
88                                        <goals>
89                                            <goal>emma</goal>
90                                        </goals>
91                                    </pluginExecutionFilter>
92                                    <action>
93                                        <ignore />
94                                    </action>
95                                </pluginExecution>
96                            </pluginExecutions>
97                        </lifecycleMappingMetadata>
98                    </configuration>
99                </plugin>
100            </plugins>
101        </pluginManagement>
102        <plugins>
103            <plugin>
104                <groupId>org.apache.maven.plugins</groupId>
105                <artifactId>maven-compiler-plugin</artifactId>
106                <version>2.3.2</version>
107                <configuration>
108                    <source>1.7</source>
109                    <target>1.7</target>
110                </configuration>
111            </plugin>
112            <plugin>
113                <groupId>org.apache.maven.plugins</groupId>
114                <artifactId>maven-dependency-plugin</artifactId>
115                <version>2.4</version>
116                <executions>
117                    <execution>
118                        <id>unpack</id>
119                        <phase>process-classes</phase>
120                        <goals>
121                            <goal>unpack</goal>
122                        </goals>
123                        <configuration>
124                            <artifactItems>
125                                <artifactItem>
126                                    <groupId>de.ugoe.cs</groupId>
127                                    <artifactId>java-utils</artifactId>
128                                    <version>${java-utils-version}</version>
129                                    <outputDirectory>${project.build.directory}/classes</outputDirectory>
130                                </artifactItem>
131                            </artifactItems>
132                        </configuration>
133                    </execution>
134                </executions>
135            </plugin>
136            <plugin>
137                <groupId>org.apache.maven.plugins</groupId>
138                <artifactId>maven-surefire-plugin</artifactId>
139                <version>2.12</version>
140                <configuration>
141                    <argLine>-XX:-UseSplitVerifier</argLine>
142                </configuration>
143            </plugin>
144            <plugin>
145                <groupId>org.apache.maven.plugins</groupId>
146                <artifactId>maven-jar-plugin</artifactId>
147                <version>2.3.2</version>
148                <executions>
149                    <execution>
150                        <goals>
151                            <goal>test-jar</goal>
152                        </goals>
153                    </execution>
154                </executions>
155            </plugin>
156        </plugins>
157    </build>
158</project>
Note: See TracBrowser for help on using the repository browser.