source: trunk/quest-core-coverage-test/pom.xml @ 521

Last change on this file since 521 was 521, checked in by sherbold, 12 years ago
  • updated POMs
  • Property svn:mime-type set to text/plain
File size: 5.1 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-coverage-test</artifactId>
5  <version>0.0.1-SNAPSHOT</version>
6  <name>quest-core-coverage-test</name>
7<scm>
8    <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-events-test</url>
9  </scm>
10  <dependencies>
11    <dependency>
12        <groupId>de.ugoe.cs.quest</groupId>
13        <artifactId>quest-core-events</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-usageprofiles-test</artifactId>
20                        <version>0.0.1-SNAPSHOT</version>
21                        <type>test-jar</type>
22                        <scope>test</scope>
23                </dependency>
24                <dependency>
25                        <groupId>de.ugoe.cs.quest</groupId>
26                        <artifactId>quest-core-coverage</artifactId>
27                        <version>0.0.1-SNAPSHOT</version>
28                        <scope>test</scope>
29                </dependency>
30    <dependency>
31        <groupId>junit</groupId>
32        <artifactId>junit</artifactId>
33        <version>4.8.1</version>
34        <scope>test</scope>
35    </dependency>
36    <!-- <dependency>
37          <groupId>junit-addons</groupId>
38          <artifactId>junit-addons</artifactId>
39          <version>1.4</version>
40    </dependency>
41    <dependency>
42          <groupId>nl.jqno.equalsverifier</groupId>
43          <artifactId>equalsverifier</artifactId>
44          <version>1.1.3</version>
45    </dependency>-->
46  </dependencies>
47  <build>
48    <pluginManagement>
49      <plugins>
50        <plugin>
51          <groupId>org.eclipse.m2e</groupId>
52          <artifactId>lifecycle-mapping</artifactId>
53          <version>1.0.0</version>
54          <configuration>
55            <lifecycleMappingMetadata>
56              <pluginExecutions>
57                <pluginExecution>
58                  <pluginExecutionFilter>
59                    <groupId>org.apache.maven.plugins</groupId>
60                    <artifactId>maven-dependency-plugin</artifactId>
61                    <versionRange>[1.0.0,)</versionRange>
62                    <goals>
63                      <goal>unpack</goal>
64                    </goals>
65                  </pluginExecutionFilter>
66                  <action>
67                    <ignore/>
68                  </action>
69                </pluginExecution>
70                <pluginExecution>
71                  <pluginExecutionFilter>
72                    <groupId>org.codehaus.mojo</groupId>
73                    <artifactId>emma-maven-plugin</artifactId>
74                    <versionRange>[1.0-alpha-3,)</versionRange>
75                    <goals>
76                      <goal>emma</goal>
77                    </goals>
78                  </pluginExecutionFilter>
79                  <action>
80                    <ignore/>
81                  </action>
82                </pluginExecution>
83              </pluginExecutions>
84            </lifecycleMappingMetadata>
85          </configuration>
86        </plugin>
87      </plugins>
88    </pluginManagement>
89    <plugins>
90      <plugin>
91        <groupId>org.apache.maven.plugins</groupId>
92        <artifactId>maven-compiler-plugin</artifactId>
93        <version>2.3.2</version>
94        <configuration>
95          <source>1.6</source>
96          <target>1.6</target>
97        </configuration>
98      </plugin>
99      <plugin>
100        <groupId>org.apache.maven.plugins</groupId>
101        <artifactId>maven-dependency-plugin</artifactId>
102        <version>2.4</version>
103        <executions>
104          <execution>
105            <id>unpack</id>
106            <phase>process-classes</phase>
107            <goals>
108              <goal>unpack</goal>
109            </goals>
110            <configuration>
111              <artifactItems>
112                <artifactItem>
113                  <groupId>de.ugoe.cs.quest</groupId>
114                  <artifactId>quest-core-coverage</artifactId>
115                  <version>0.0.1-SNAPSHOT</version>
116                  <outputDirectory>${project.build.directory}/classes</outputDirectory>
117                </artifactItem>
118              </artifactItems>
119            </configuration>
120          </execution>
121        </executions>
122      </plugin>
123      <plugin>
124        <groupId>org.codehaus.mojo</groupId>
125        <artifactId>emma-maven-plugin</artifactId>
126        <version>1.0-alpha-3</version>
127        <inherited>true</inherited>         
128        <executions>
129          <execution>
130            <phase>process-classes</phase>
131            <goals>
132              <goal>emma</goal>
133            </goals>
134          </execution>
135        </executions>
136      </plugin>
137      <plugin>
138        <groupId>org.apache.maven.plugins</groupId>
139        <artifactId>maven-jar-plugin</artifactId>
140        <version>2.3.2</version>
141        <executions>
142          <execution>
143            <goals>
144              <goal>test-jar</goal>
145            </goals>
146          </execution>
147        </executions>
148      </plugin>
149    </plugins>
150  </build>
151</project>
Note: See TracBrowser for help on using the repository browser.