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