source: trunk/quest-core-usability-test/pom.xml @ 474

Last change on this file since 474 was 474, checked in by pharms, 12 years ago

Initial import.

File size: 4.5 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-usability-test</artifactId>
5  <version>0.0.1-SNAPSHOT</version>
6  <name>quest-core-usability-test</name>
7  <scm>
8    <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-usability-test</url>
9  </scm>
10  <dependencies>
11    <dependency>
12      <groupId>de.ugoe.cs.quest</groupId>
13      <artifactId>quest-core-usability</artifactId>
14      <version>0.0.1-SNAPSHOT</version>
15      <scope>test</scope>
16    </dependency>
17    <dependency>
18      <groupId>de.ugoe.cs.quest</groupId>
19      <artifactId>quest-core-tasktrees-test</artifactId>
20      <version>0.0.1-SNAPSHOT</version>
21      <type>test-jar</type>
22      <scope>test</scope>
23    </dependency>
24    <dependency>
25        <groupId>junit</groupId>
26        <artifactId>junit</artifactId>
27        <version>4.8.1</version>
28        <scope>test</scope>
29    </dependency>
30  </dependencies>
31  <build>
32    <pluginManagement>
33      <plugins>
34        <plugin>
35          <groupId>org.eclipse.m2e</groupId>
36          <artifactId>lifecycle-mapping</artifactId>
37          <version>1.0.0</version>
38          <configuration>
39            <lifecycleMappingMetadata>
40              <pluginExecutions>
41                <pluginExecution>
42                  <pluginExecutionFilter>
43                    <groupId>org.apache.maven.plugins</groupId>
44                    <artifactId>maven-dependency-plugin</artifactId>
45                    <versionRange>[1.0.0,)</versionRange>
46                    <goals>
47                      <goal>unpack</goal>
48                    </goals>
49                  </pluginExecutionFilter>
50                  <action>
51                    <ignore/>
52                  </action>
53                </pluginExecution>
54                <pluginExecution>
55                  <pluginExecutionFilter>
56                    <groupId>org.codehaus.mojo</groupId>
57                    <artifactId>emma-maven-plugin</artifactId>
58                    <versionRange>[1.0-alpha-3,)</versionRange>
59                    <goals>
60                      <goal>emma</goal>
61                    </goals>
62                  </pluginExecutionFilter>
63                  <action>
64                    <ignore/>
65                  </action>
66                </pluginExecution>
67              </pluginExecutions>
68            </lifecycleMappingMetadata>
69          </configuration>
70        </plugin>
71      </plugins>
72    </pluginManagement>
73    <plugins>
74      <plugin>
75        <groupId>org.apache.maven.plugins</groupId>
76        <artifactId>maven-compiler-plugin</artifactId>
77        <version>2.3.2</version>
78        <configuration>
79          <source>1.6</source>
80          <target>1.6</target>
81        </configuration>
82      </plugin>
83      <plugin>
84        <groupId>org.apache.maven.plugins</groupId>
85        <artifactId>maven-dependency-plugin</artifactId>
86        <version>2.4</version>
87        <executions>
88          <execution>
89            <id>unpack</id>
90            <phase>process-classes</phase>
91            <goals>
92              <goal>unpack</goal>
93            </goals>
94            <configuration>
95              <artifactItems>
96                <artifactItem>
97                  <groupId>de.ugoe.cs.quest</groupId>
98                  <artifactId>quest-core-tasktrees</artifactId>
99                  <version>0.0.1-SNAPSHOT</version>
100                  <outputDirectory>${project.build.directory}/classes</outputDirectory>
101                </artifactItem>
102              </artifactItems>
103            </configuration>
104          </execution>
105        </executions>
106      </plugin>
107      <plugin>
108        <groupId>org.codehaus.mojo</groupId>
109        <artifactId>emma-maven-plugin</artifactId>
110        <version>1.0-alpha-3</version>
111        <inherited>true</inherited>         
112        <executions>
113          <execution>
114            <phase>process-classes</phase>
115            <goals>
116              <goal>emma</goal>
117            </goals>
118          </execution>
119        </executions>
120      </plugin>
121      <plugin>
122        <groupId>org.apache.maven.plugins</groupId>
123        <artifactId>maven-jar-plugin</artifactId>
124        <version>2.3.2</version>
125        <executions>
126          <execution>
127            <goals>
128              <goal>test-jar</goal>
129            </goals>
130          </execution>
131        </executions>
132      </plugin>
133    </plugins>
134  </build>
135</project>
Note: See TracBrowser for help on using the repository browser.