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

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

added emma coverage calculation

File size: 2.8 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    <plugins>
26      <plugin>
27       <groupId>org.apache.maven.plugins</groupId>
28        <artifactId>maven-compiler-plugin</artifactId>
29        <version>2.3.2</version>
30        <configuration>
31          <source>1.6</source>
32          <target>1.6</target>
33        </configuration>
34      </plugin>
35      <plugin>
36        <groupId>org.apache.maven.plugins</groupId>
37        <artifactId>maven-dependency-plugin</artifactId>
38        <version>2.4</version>
39        <executions>
40          <execution>
41            <id>unpack</id>
42            <phase>process-classes</phase>
43            <goals>
44              <goal>unpack</goal>
45            </goals>
46            <configuration>
47              <artifactItems>
48                <artifactItem>
49                  <groupId>de.ugoe.cs.quest</groupId>
50                  <artifactId>quest-core-tasktrees</artifactId>
51                  <version>0.0.1-SNAPSHOT</version>
52                  <outputDirectory>${project.build.directory}/classes</outputDirectory>
53                </artifactItem>
54              </artifactItems>
55            </configuration>
56          </execution>
57        </executions>
58      </plugin>
59      <plugin>
60        <groupId>org.codehaus.mojo</groupId>
61        <artifactId>emma-maven-plugin</artifactId>
62        <version>1.0-alpha-3</version>
63        <inherited>true</inherited>         
64        <executions>
65          <execution>
66            <phase>process-classes</phase>
67            <goals>
68              <goal>emma</goal>
69            </goals>
70          </execution>
71        </executions>
72      </plugin>
73      <plugin>
74        <groupId>org.apache.maven.plugins</groupId>
75        <artifactId>maven-jar-plugin</artifactId>
76        <version>2.3.2</version>
77        <executions>
78          <execution>
79            <goals>
80              <goal>test-jar</goal>
81            </goals>
82          </execution>
83        </executions>
84      </plugin>
85    </plugins>
86  </build>
87</project>
Note: See TracBrowser for help on using the repository browser.