source: trunk/quest-plugin-mfc-test/pom.xml @ 705

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

readded dependency to UI core

File size: 7.1 KB
Line 
1<project
2    xmlns="http://maven.apache.org/POM/4.0.0"
3    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
5>
6    <modelVersion>4.0.0</modelVersion>
7    <groupId>de.ugoe.cs.quest</groupId>
8    <artifactId>quest-plugin-mfc-test</artifactId>
9    <version>0.0.1-SNAPSHOT</version>
10    <name>quest-plugin-jfc-test</name>
11    <scm>
12        <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-plugin-mfc-test</url>
13    </scm>
14    <dependencies>
15        <dependency>
16            <groupId>de.ugoe.cs.quest</groupId>
17            <artifactId>quest-plugin-mfc</artifactId>
18            <version>0.0.1-SNAPSHOT</version>
19            <scope>test</scope>
20        </dependency>
21        <dependency>
22            <groupId>de.ugoe.cs.quest</groupId>
23            <artifactId>quest-ui-core</artifactId>
24            <version>0.0.1-SNAPSHOT</version>
25            <scope>test</scope>
26        </dependency>
27        <dependency>
28            <groupId>junit</groupId>
29            <artifactId>junit</artifactId>
30            <version>4.8.1</version>
31            <scope>test</scope>
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-plugin-mfc</artifactId>
102                                    <version>0.0.1-SNAPSHOT</version>
103                                    <outputDirectory>${project.build.directory}/classes</outputDirectory>
104                                </artifactItem>
105                            </artifactItems>
106                        </configuration>
107                    </execution>
108                    <execution>
109                        <id>get-mfc-plugin-config</id>
110                        <phase>process-classes</phase>
111                        <goals>
112                            <goal>unpack</goal>
113                        </goals>
114                        <configuration>
115                            <artifactItems>
116                                <artifactItem>
117                                    <groupId>de.ugoe.cs.quest</groupId>
118                                    <artifactId>quest-plugin-mfc</artifactId>
119                                    <version>0.0.1-SNAPSHOT</version>
120                                    <classifier>config</classifier>
121                                    <type>zip</type>
122                                    <outputDirectory>${basedir}/data</outputDirectory>
123                                </artifactItem>
124                            </artifactItems>
125                        </configuration>
126                    </execution>
127                </executions>
128            </plugin>
129            <plugin>
130                <groupId>org.codehaus.mojo</groupId>
131                <artifactId>emma-maven-plugin</artifactId>
132                <version>1.0-alpha-3</version>
133                <inherited>true</inherited>
134                <executions>
135                    <execution>
136                        <phase>process-classes</phase>
137                        <goals>
138                            <goal>emma</goal>
139                        </goals>
140                    </execution>
141                </executions>
142            </plugin>
143            <plugin>
144                <groupId>org.apache.maven.plugins</groupId>
145                <artifactId>maven-jar-plugin</artifactId>
146                <version>2.3.2</version>
147                <executions>
148                    <execution>
149                        <goals>
150                            <goal>test-jar</goal>
151                        </goals>
152                    </execution>
153                </executions>
154            </plugin>
155            <plugin>
156                <artifactId>maven-clean-plugin</artifactId>
157                <version>2.5</version>
158                <configuration>
159                    <filesets>
160                        <fileset>
161                            <directory>${basedir}/data</directory>
162                        </fileset>
163                    </filesets>
164                </configuration>
165            </plugin>
166        </plugins>
167    </build>
168</project>
Note: See TracBrowser for help on using the repository browser.