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

Last change on this file since 1524 was 1524, checked in by pharms, 10 years ago
  • preparation for release of 0.1.0
File size: 5.4 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        <tested-autoquest-version>0.0.1-SNAPSHOT</tested-autoquest-version>
22    </properties>
23    <scm>
24        <url>${autoquest-scm-trunk-dir}/${project.artifactId}</url>
25        <connection>scm:svn:${autoquest-scm-trunk-dir}/${project.artifactId}</connection>
26    </scm>
27    <dependencies>
28        <dependency>
29            <groupId>${project.groupId}</groupId>
30            <artifactId>${tested-artifactId}</artifactId>
31            <version>${tested-autoquest-version}</version>
32            <scope>test</scope>
33        </dependency>
34        <dependency>
35            <groupId>de.ugoe.cs.autoquest</groupId>
36            <artifactId>autoquest-test-utils</artifactId>
37            <version>${project.version}</version>
38            <scope>test</scope>
39        </dependency>
40        <dependency>
41            <groupId>junit</groupId>
42            <artifactId>junit</artifactId>
43            <version>4.8.1</version>
44            <scope>test</scope>
45        </dependency>
46    </dependencies>
47    <build>
48        <pluginManagement>
49            <plugins>
50                <plugin>
51                    <groupId>org.eclipse.m2e</groupId>
52                    <artifactId>lifecycle-mapping</artifactId>
53                    <version>1.0.0</version>
54                    <configuration>
55                        <lifecycleMappingMetadata>
56                            <pluginExecutions>
57                                <pluginExecution>
58                                    <pluginExecutionFilter>
59                                        <groupId>org.apache.maven.plugins</groupId>
60                                        <artifactId>maven-dependency-plugin</artifactId>
61                                        <versionRange>[1.0.0,)</versionRange>
62                                        <goals>
63                                            <goal>unpack</goal>
64                                        </goals>
65                                    </pluginExecutionFilter>
66                                    <action>
67                                        <ignore />
68                                    </action>
69                                </pluginExecution>
70                            </pluginExecutions>
71                        </lifecycleMappingMetadata>
72                    </configuration>
73                </plugin>
74            </plugins>
75        </pluginManagement>
76        <plugins>
77            <plugin>
78                <artifactId>maven-compiler-plugin</artifactId>
79                <version>2.3.2</version>
80                <configuration>
81                    <source>1.7</source>
82                    <target>1.7</target>
83                </configuration>
84            </plugin>
85            <plugin>
86                <groupId>org.apache.maven.plugins</groupId>
87                <artifactId>maven-surefire-plugin</artifactId>
88                <version>2.12</version>
89                <configuration>
90                    <argLine>-XX:-UseSplitVerifier</argLine>
91                </configuration>
92            </plugin>
93        </plugins>
94    </build>
95    <profiles>
96        <profile>
97            <id>test execution</id>
98            <activation>
99                <file>
100                    <exists>src</exists>
101                </file>
102            </activation>
103            <build>
104                <plugins>
105                    <plugin>
106                        <groupId>org.apache.maven.plugins</groupId>
107                        <artifactId>maven-dependency-plugin</artifactId>
108                        <version>2.4</version>
109                        <executions>
110                            <execution>
111                                <id>unpack</id>
112                                <phase>process-classes</phase>
113                                <goals>
114                                    <goal>unpack</goal>
115                                </goals>
116                                <configuration>
117                                    <artifactItems>
118                                        <artifactItem>
119                                            <groupId>${project.groupId}</groupId>
120                                            <artifactId>${tested-artifactId}</artifactId>
121                                            <version>${tested-autoquest-version}</version>
122                                            <outputDirectory>${project.build.directory}/classes</outputDirectory>
123                                        </artifactItem>
124                                    </artifactItems>
125                                </configuration>
126                            </execution>
127                        </executions>
128                    </plugin>
129                </plugins>
130            </build>
131        </profile>
132    </profiles>
133</project>
Note: See TracBrowser for help on using the repository browser.