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

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

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

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.0</version>
6    <packaging>pom</packaging>
7    <name>${tested-artifact-id}-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}/${tested-artifact-id}-test/tags/autoquest-release-0.1.0/${tested-artifact-id}-test</url>
20    </scm>
21    <dependencies>
22        <dependency>
23            <groupId>${project.groupId}</groupId>
24            <artifactId>${tested-artifactId}</artifactId>
25            <version>${project.version}</version>
26            <scope>test</scope>
27        </dependency>
28        <dependency>
29            <groupId>de.ugoe.cs.autoquest</groupId>
30            <artifactId>autoquest-test-utils</artifactId>
31            <version>${project.version}</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    </dependencies>
41    <build>
42        <pluginManagement>
43            <plugins>
44                <plugin>
45                    <groupId>org.eclipse.m2e</groupId>
46                    <artifactId>lifecycle-mapping</artifactId>
47                    <version>1.0.0</version>
48                    <configuration>
49                        <lifecycleMappingMetadata>
50                            <pluginExecutions>
51                                <pluginExecution>
52                                    <pluginExecutionFilter>
53                                        <groupId>org.apache.maven.plugins</groupId>
54                                        <artifactId>maven-dependency-plugin</artifactId>
55                                        <versionRange>[1.0.0,)</versionRange>
56                                        <goals>
57                                            <goal>unpack</goal>
58                                        </goals>
59                                    </pluginExecutionFilter>
60                                    <action>
61                                        <ignore />
62                                    </action>
63                                </pluginExecution>
64                            </pluginExecutions>
65                        </lifecycleMappingMetadata>
66                    </configuration>
67                </plugin>
68            </plugins>
69        </pluginManagement>
70        <plugins>
71            <plugin>
72                <artifactId>maven-compiler-plugin</artifactId>
73                <version>2.3.2</version>
74                <configuration>
75                    <source>1.7</source>
76                    <target>1.7</target>
77                </configuration>
78            </plugin>
79            <plugin>
80                <groupId>org.apache.maven.plugins</groupId>
81                <artifactId>maven-surefire-plugin</artifactId>
82                <version>2.12</version>
83                <configuration>
84                    <argLine>-XX:-UseSplitVerifier</argLine>
85                </configuration>
86            </plugin>
87        </plugins>
88    </build>
89    <profiles>
90        <profile>
91            <id>test execution</id>
92            <activation>
93                <file>
94                    <exists>src</exists>
95                </file>
96            </activation>
97            <build>
98                <plugins>
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>${project.groupId}</groupId>
114                                            <artifactId>${tested-artifactId}</artifactId>
115                                            <version>${project.parent.version}</version>
116                                            <outputDirectory>${project.build.directory}/classes</outputDirectory>
117                                        </artifactItem>
118                                    </artifactItems>
119                                </configuration>
120                            </execution>
121                        </executions>
122                    </plugin>
123                </plugins>
124            </build>
125        </profile>
126    </profiles>
127</project>
Note: See TracBrowser for help on using the repository browser.