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

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