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

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

[maven-release-plugin] prepare for next development iteration

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