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

Last change on this file since 1776 was 1776, checked in by pharms, 10 years ago

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

  • Property svn:mime-type set to text/plain
File size: 6.4 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.1.1</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.1.1</java-utils-version>
15    </properties>
16    <scm>
17        <url>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/tags/autoquest-release-0.1.1/${project.artifactId}</url>
18        <connection>scm:svn:https://autoquest.informatik.uni-goettingen.de/svn/autoquest/tags/autoquest-release-0.1.1/${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    <dependencies>
31        <dependency>
32            <groupId>de.ugoe.cs</groupId>
33            <artifactId>java-utils</artifactId>
34            <version>${java-utils-version}</version>
35            <scope>test</scope>
36        </dependency>
37        <dependency>
38            <groupId>junit</groupId>
39            <artifactId>junit</artifactId>
40            <version>4.8.1</version>
41            <scope>test</scope>
42        </dependency>
43        <dependency>
44            <groupId>junit-addons</groupId>
45            <artifactId>junit-addons</artifactId>
46            <version>1.4</version>
47        </dependency>
48    </dependencies>
49    <build>
50        <pluginManagement>
51            <plugins>
52                <plugin>
53                    <groupId>org.eclipse.m2e</groupId>
54                    <artifactId>lifecycle-mapping</artifactId>
55                    <version>1.0.0</version>
56                    <configuration>
57                        <lifecycleMappingMetadata>
58                            <pluginExecutions>
59                                <pluginExecution>
60                                    <pluginExecutionFilter>
61                                        <groupId>org.apache.maven.plugins</groupId>
62                                        <artifactId>maven-dependency-plugin</artifactId>
63                                        <versionRange>[1.0.0,)</versionRange>
64                                        <goals>
65                                            <goal>unpack</goal>
66                                        </goals>
67                                    </pluginExecutionFilter>
68                                    <action>
69                                        <ignore />
70                                    </action>
71                                </pluginExecution>
72                                <pluginExecution>
73                                    <pluginExecutionFilter>
74                                        <groupId>org.codehaus.mojo</groupId>
75                                        <artifactId>emma-maven-plugin</artifactId>
76                                        <versionRange>[1.0-alpha-3,)</versionRange>
77                                        <goals>
78                                            <goal>emma</goal>
79                                        </goals>
80                                    </pluginExecutionFilter>
81                                    <action>
82                                        <ignore />
83                                    </action>
84                                </pluginExecution>
85                            </pluginExecutions>
86                        </lifecycleMappingMetadata>
87                    </configuration>
88                </plugin>
89            </plugins>
90        </pluginManagement>
91        <plugins>
92            <plugin>
93                <groupId>org.apache.maven.plugins</groupId>
94                <artifactId>maven-compiler-plugin</artifactId>
95                <version>2.3.2</version>
96                <configuration>
97                    <source>1.7</source>
98                    <target>1.7</target>
99                </configuration>
100            </plugin>
101            <plugin>
102                <groupId>org.apache.maven.plugins</groupId>
103                <artifactId>maven-dependency-plugin</artifactId>
104                <version>2.4</version>
105                <executions>
106                    <execution>
107                        <id>unpack</id>
108                        <phase>process-classes</phase>
109                        <goals>
110                            <goal>unpack</goal>
111                        </goals>
112                        <configuration>
113                            <artifactItems>
114                                <artifactItem>
115                                    <groupId>de.ugoe.cs</groupId>
116                                    <artifactId>java-utils</artifactId>
117                                    <version>${java-utils-version}</version>
118                                    <outputDirectory>${project.build.directory}/classes</outputDirectory>
119                                </artifactItem>
120                            </artifactItems>
121                        </configuration>
122                    </execution>
123                </executions>
124            </plugin>
125            <plugin>
126                <groupId>org.apache.maven.plugins</groupId>
127                <artifactId>maven-surefire-plugin</artifactId>
128                <version>2.12</version>
129                <configuration>
130                    <argLine>-XX:-UseSplitVerifier</argLine>
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.