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

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

[maven-release-plugin] rollback the release of autoquest-release-0.1.0

File size: 5.3 KB
Line 
1<project
2    xmlns="http://maven.apache.org/POM/4.0.0"
3    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
5>
6    <modelVersion>4.0.0</modelVersion>
7    <groupId>de.ugoe.cs.autoquest</groupId>
8    <artifactId>autoquest-test</artifactId>
9    <version>0.0.1-SNAPSHOT</version>
10    <packaging>pom</packaging>
11    <name>autoquest-test</name>
12    <licenses>
13        <license>
14            <name>The Apache Software License, Version 2.0</name>
15            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
16        </license>
17    </licenses>
18    <properties>
19        <autoquest-scm-trunk-dir>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk</autoquest-scm-trunk-dir>
20        <tested-artifactId>autoquest</tested-artifactId>
21    </properties>
22    <scm>
23        <url>${autoquest-scm-trunk-dir}/${project.artifactId}</url>
24        <connection>scm:svn:${autoquest-scm-trunk-dir}/${project.artifactId}</connection>
25    </scm>
26    <dependencies>
27        <dependency>
28            <groupId>${project.groupId}</groupId>
29            <artifactId>${tested-artifactId}</artifactId>
30            <version>${project.version}</version>
31            <scope>test</scope>
32        </dependency>
33        <dependency>
34            <groupId>de.ugoe.cs.autoquest</groupId>
35            <artifactId>autoquest-test-utils</artifactId>
36            <version>${project.version}</version>
37            <scope>test</scope>
38        </dependency>
39        <dependency>
40            <groupId>junit</groupId>
41            <artifactId>junit</artifactId>
42            <version>4.8.1</version>
43            <scope>test</scope>
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                            </pluginExecutions>
70                        </lifecycleMappingMetadata>
71                    </configuration>
72                </plugin>
73            </plugins>
74        </pluginManagement>
75        <plugins>
76            <plugin>
77                <artifactId>maven-compiler-plugin</artifactId>
78                <version>2.3.2</version>
79                <configuration>
80                    <source>1.7</source>
81                    <target>1.7</target>
82                </configuration>
83            </plugin>
84            <plugin>
85                <groupId>org.apache.maven.plugins</groupId>
86                <artifactId>maven-surefire-plugin</artifactId>
87                <version>2.12</version>
88                <configuration>
89                    <argLine>-XX:-UseSplitVerifier</argLine>
90                </configuration>
91            </plugin>
92        </plugins>
93    </build>
94    <profiles>
95        <profile>
96            <id>test execution</id>
97            <activation>
98                <file>
99                    <exists>src</exists>
100                </file>
101            </activation>
102            <build>
103                <plugins>
104                    <plugin>
105                        <groupId>org.apache.maven.plugins</groupId>
106                        <artifactId>maven-dependency-plugin</artifactId>
107                        <version>2.4</version>
108                        <executions>
109                            <execution>
110                                <id>unpack</id>
111                                <phase>process-classes</phase>
112                                <goals>
113                                    <goal>unpack</goal>
114                                </goals>
115                                <configuration>
116                                    <artifactItems>
117                                        <artifactItem>
118                                            <groupId>${project.groupId}</groupId>
119                                            <artifactId>${tested-artifactId}</artifactId>
120                                            <version>${project.version}</version>
121                                            <outputDirectory>${project.build.directory}/classes</outputDirectory>
122                                        </artifactItem>
123                                    </artifactItems>
124                                </configuration>
125                            </execution>
126                        </executions>
127                    </plugin>
128                </plugins>
129            </build>
130        </profile>
131    </profiles>
132</project>
Note: See TracBrowser for help on using the repository browser.