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