source: trunk/quest-ui-core-test/pom.xml @ 493

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