source: trunk/autoquest-plugin-mfc-test/pom.xml @ 920

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