source: trunk/autoquest-plugin-html-test/pom.xml @ 1392

Last change on this file since 1392 was 1069, checked in by pharms, 11 years ago
  • support of new HTML logging format
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-html-test</artifactId>
13    <licenses>
14        <license>
15            <name>The Apache Software License, Version 2.0</name>
16            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
17        </license>
18    </licenses>
19    <properties>
20        <tested-artifactId>autoquest-plugin-html</tested-artifactId>
21    </properties>
22    <build>
23        <plugins>
24            <plugin>
25                <groupId>org.apache.maven.plugins</groupId>
26                <artifactId>maven-dependency-plugin</artifactId>
27                <version>2.4</version>
28                <executions>
29                    <execution>
30                        <id>get-html-plugin-config</id>
31                        <phase>process-classes</phase>
32                        <goals>
33                            <goal>unpack</goal>
34                        </goals>
35                        <configuration>
36                            <artifactItems>
37                                <artifactItem>
38                                    <groupId>de.ugoe.cs.autoquest</groupId>
39                                    <artifactId>autoquest-plugin-html</artifactId>
40                                    <version>${tested-autoquest-version}</version>
41                                    <classifier>config</classifier>
42                                    <type>zip</type>
43                                    <outputDirectory>${basedir}/data</outputDirectory>
44                                </artifactItem>
45                            </artifactItems>
46                        </configuration>
47                    </execution>
48                </executions>
49            </plugin>
50            <plugin>
51                <artifactId>maven-clean-plugin</artifactId>
52                <version>2.5</version>
53                <configuration>
54                    <filesets>
55                        <fileset>
56                            <directory>${basedir}/data</directory>
57                        </fileset>
58                    </filesets>
59                </configuration>
60            </plugin>
61        </plugins>
62    </build>
63</project>
Note: See TracBrowser for help on using the repository browser.