source: trunk/quest-plugin-jfc-test/pom.xml @ 810

Last change on this file since 810 was 810, checked in by sherbold, 12 years ago
  • removed dependency on MFC plug-in through mocking
File size: 2.5 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    <parent>
7        <groupId>de.ugoe.cs.quest</groupId>
8        <artifactId>quest-test</artifactId>
9        <version>0.0.1-SNAPSHOT</version>
10    </parent>
11    <modelVersion>4.0.0</modelVersion>
12    <artifactId>quest-plugin-jfc-test</artifactId>
13    <properties>
14        <tested-artifactId>quest-plugin-jfc</tested-artifactId>
15    </properties>
16    <dependencies>
17            <dependency>
18            <groupId>org.mockito</groupId>
19            <artifactId>mockito-core</artifactId>
20            <version>1.9.0</version>
21            <scope>test</scope>
22        </dependency></dependencies>
23    <build>
24        <plugins>
25            <plugin>
26                <groupId>org.apache.maven.plugins</groupId>
27                <artifactId>maven-dependency-plugin</artifactId>
28                <version>2.4</version>
29                <executions>
30                    <execution>
31                        <id>get-jfc-plugin-config</id>
32                        <phase>process-classes</phase>
33                        <goals>
34                            <goal>unpack</goal>
35                        </goals>
36                        <configuration>
37                            <artifactItems>
38                                <artifactItem>
39                                    <groupId>de.ugoe.cs.quest</groupId>
40                                    <artifactId>quest-plugin-jfc</artifactId>
41                                    <version>${tested-quest-version}</version>
42                                    <classifier>config</classifier>
43                                    <type>zip</type>
44                                    <outputDirectory>${basedir}/data</outputDirectory>
45                                </artifactItem>
46                            </artifactItems>
47                        </configuration>
48                    </execution>
49                </executions>
50            </plugin>
51            <plugin>
52                <artifactId>maven-clean-plugin</artifactId>
53                <version>2.5</version>
54                <configuration>
55                    <filesets>
56                        <fileset>
57                            <directory>${basedir}/data</directory>
58                        </fileset>
59                    </filesets>
60                </configuration>
61            </plugin>
62        </plugins>
63    </build>
64</project>
Note: See TracBrowser for help on using the repository browser.