source: trunk/autoquest-test/pom.xml @ 1535

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

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

File size: 5.3 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.autoquest</groupId>
4    <artifactId>autoquest-test</artifactId>
5    <version>0.1.1-SNAPSHOT</version>
6    <packaging>pom</packaging>
7    <name>autoquest-test</name>
8    <licenses>
9        <license>
10            <name>The Apache Software License, Version 2.0</name>
11            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
12        </license>
13    </licenses>
14    <properties>
15        <autoquest-scm-trunk-dir>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk</autoquest-scm-trunk-dir>
16        <tested-artifactId>autoquest</tested-artifactId>
17    </properties>
18    <scm>
19        <url>${autoquest-scm-trunk-dir}/${project.artifactId}</url>
20        <connection>scm:svn:${autoquest-scm-trunk-dir}/${project.artifactId}</connection>
21    </scm>
22    <dependencies>
23        <dependency>
24            <groupId>${project.groupId}</groupId>
25            <artifactId>${tested-artifactId}</artifactId>
26            <version>${project.version}</version>
27            <scope>test</scope>
28        </dependency>
29        <dependency>
30            <groupId>de.ugoe.cs.autoquest</groupId>
31            <artifactId>autoquest-test-utils</artifactId>
32            <version>${project.version}</version>
33            <scope>test</scope>
34        </dependency>
35        <dependency>
36            <groupId>junit</groupId>
37            <artifactId>junit</artifactId>
38            <version>4.8.1</version>
39            <scope>test</scope>
40        </dependency>
41    </dependencies>
42    <build>
43        <pluginManagement>
44            <plugins>
45                <plugin>
46                    <groupId>org.eclipse.m2e</groupId>
47                    <artifactId>lifecycle-mapping</artifactId>
48                    <version>1.0.0</version>
49                    <configuration>
50                        <lifecycleMappingMetadata>
51                            <pluginExecutions>
52                                <pluginExecution>
53                                    <pluginExecutionFilter>
54                                        <groupId>org.apache.maven.plugins</groupId>
55                                        <artifactId>maven-dependency-plugin</artifactId>
56                                        <versionRange>[1.0.0,)</versionRange>
57                                        <goals>
58                                            <goal>unpack</goal>
59                                        </goals>
60                                    </pluginExecutionFilter>
61                                    <action>
62                                        <ignore />
63                                    </action>
64                                </pluginExecution>
65                            </pluginExecutions>
66                        </lifecycleMappingMetadata>
67                    </configuration>
68                </plugin>
69            </plugins>
70        </pluginManagement>
71        <plugins>
72            <plugin>
73                <artifactId>maven-compiler-plugin</artifactId>
74                <version>2.3.2</version>
75                <configuration>
76                    <source>1.7</source>
77                    <target>1.7</target>
78                </configuration>
79            </plugin>
80            <plugin>
81                <groupId>org.apache.maven.plugins</groupId>
82                <artifactId>maven-surefire-plugin</artifactId>
83                <version>2.12</version>
84                <configuration>
85                    <argLine>-XX:-UseSplitVerifier</argLine>
86                </configuration>
87            </plugin>
88        </plugins>
89    </build>
90    <profiles>
91        <profile>
92            <id>test execution</id>
93            <activation>
94                <file>
95                    <exists>src</exists>
96                </file>
97            </activation>
98            <build>
99                <plugins>
100                    <plugin>
101                        <groupId>org.apache.maven.plugins</groupId>
102                        <artifactId>maven-dependency-plugin</artifactId>
103                        <version>2.4</version>
104                        <executions>
105                            <execution>
106                                <id>unpack</id>
107                                <phase>process-classes</phase>
108                                <goals>
109                                    <goal>unpack</goal>
110                                </goals>
111                                <configuration>
112                                    <artifactItems>
113                                        <artifactItem>
114                                            <groupId>${project.groupId}</groupId>
115                                            <artifactId>${tested-artifactId}</artifactId>
116                                            <version>${project.version}</version>
117                                            <outputDirectory>${project.build.directory}/classes</outputDirectory>
118                                        </artifactItem>
119                                    </artifactItems>
120                                </configuration>
121                            </execution>
122                        </executions>
123                    </plugin>
124                </plugins>
125            </build>
126        </profile>
127    </profiles>
128</project>
Note: See TracBrowser for help on using the repository browser.