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

Last change on this file since 763 was 763, checked in by pharms, 12 years ago
  • created a parent pom test project
File size: 2.2 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    <build>
17        <plugins>
18            <plugin>
19                <groupId>org.apache.maven.plugins</groupId>
20                <artifactId>maven-dependency-plugin</artifactId>
21                <version>2.4</version>
22                <executions>
23                    <execution>
24                        <id>get-jfc-plugin-config</id>
25                        <phase>process-classes</phase>
26                        <goals>
27                            <goal>unpack</goal>
28                        </goals>
29                        <configuration>
30                            <artifactItems>
31                                <artifactItem>
32                                    <groupId>de.ugoe.cs.quest</groupId>
33                                    <artifactId>quest-plugin-jfc</artifactId>
34                                    <version>${tested-quest-version}</version>
35                                    <classifier>config</classifier>
36                                    <type>zip</type>
37                                    <outputDirectory>${basedir}/data</outputDirectory>
38                                </artifactItem>
39                            </artifactItems>
40                        </configuration>
41                    </execution>
42                </executions>
43            </plugin>
44            <plugin>
45                <artifactId>maven-clean-plugin</artifactId>
46                <version>2.5</version>
47                <configuration>
48                    <filesets>
49                        <fileset>
50                            <directory>${basedir}/data</directory>
51                        </fileset>
52                    </filesets>
53                </configuration>
54            </plugin>
55        </plugins>
56    </build>
57</project>
Note: See TracBrowser for help on using the repository browser.