source: trunk/quest-core-tasktrees-test/pom.xml @ 655

Last change on this file since 655 was 655, checked in by pharms, 12 years ago
  • removed old copyright file header
File size: 3.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.quest</groupId>
4  <artifactId>quest-core-tasktrees-test</artifactId>
5  <version>0.0.1-SNAPSHOT</version>
6  <name>quest-core-tasktrees-test</name>
7  <scm>
8    <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-tasktrees-test</url>
9  </scm>
10  <dependencies>
11    <dependency>
12        <groupId>de.ugoe.cs.quest</groupId>
13        <artifactId>quest-core-tasktrees</artifactId>
14        <version>0.0.1-SNAPSHOT</version>
15        <scope>test</scope>
16    </dependency>
17    <dependency>
18        <groupId>junit</groupId>
19        <artifactId>junit</artifactId>
20        <version>4.8.1</version>
21        <scope>test</scope>
22    </dependency>
23  </dependencies>
24  <build>
25    <pluginManagement>
26      <plugins>
27        <plugin>
28          <groupId>org.eclipse.m2e</groupId>
29          <artifactId>lifecycle-mapping</artifactId>
30          <version>1.0.0</version>
31          <configuration>
32            <lifecycleMappingMetadata>
33              <pluginExecutions>
34                <pluginExecution>
35                  <pluginExecutionFilter>
36                    <groupId>org.apache.maven.plugins</groupId>
37                    <artifactId>maven-dependency-plugin</artifactId>
38                    <versionRange>[1.0.0,)</versionRange>
39                    <goals>
40                      <goal>unpack</goal>
41                    </goals>
42                  </pluginExecutionFilter>
43                  <action>
44                    <ignore/>
45                  </action>
46                </pluginExecution>
47
48              </pluginExecutions>
49            </lifecycleMappingMetadata>
50          </configuration>
51        </plugin>
52      </plugins>
53    </pluginManagement>
54    <plugins>
55      <plugin>
56        <groupId>org.apache.maven.plugins</groupId>
57        <artifactId>maven-compiler-plugin</artifactId>
58        <version>2.3.2</version>
59        <configuration>
60          <source>1.6</source>
61          <target>1.6</target>
62        </configuration>
63      </plugin>
64      <plugin>
65        <groupId>org.apache.maven.plugins</groupId>
66        <artifactId>maven-dependency-plugin</artifactId>
67        <version>2.4</version>
68        <executions>
69          <execution>
70            <id>unpack</id>
71            <phase>process-classes</phase>
72            <goals>
73              <goal>unpack</goal>
74            </goals>
75            <configuration>
76              <artifactItems>
77                <artifactItem>
78                  <groupId>de.ugoe.cs.quest</groupId>
79                  <artifactId>quest-core-tasktrees</artifactId>
80                  <version>0.0.1-SNAPSHOT</version>
81                  <outputDirectory>${project.build.directory}/classes</outputDirectory>
82                </artifactItem>
83              </artifactItems>
84            </configuration>
85          </execution>
86        </executions>
87      </plugin>
88      <plugin>
89        <groupId>org.apache.maven.plugins</groupId>
90        <artifactId>maven-jar-plugin</artifactId>
91        <version>2.3.2</version>
92        <executions>
93          <execution>
94            <goals>
95              <goal>test-jar</goal>
96            </goals>
97          </execution>
98        </executions>
99      </plugin>
100    </plugins>
101  </build>
102</project>
Note: See TracBrowser for help on using the repository browser.