source: trunk/quest-core-events-test/pom.xml @ 506

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