source: trunk/autoquest-htmlmonitor-test/pom.xml @ 1536

Last change on this file since 1536 was 1536, checked in by pharms, 10 years ago

[maven-release-plugin] rollback the release of autoquest-release-0.1.0

File size: 4.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.autoquest</groupId>
8        <artifactId>autoquest-test</artifactId>
9        <version>0.0.1-SNAPSHOT</version>
10        <relativePath>../autoquest-test/pom.xml</relativePath>
11    </parent>
12    <modelVersion>4.0.0</modelVersion>
13    <artifactId>autoquest-htmlmonitor-test</artifactId>
14    <licenses>
15        <license>
16            <name>The Apache Software License, Version 2.0</name>
17            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
18        </license>
19    </licenses>
20    <scm>
21        <url>${autoquest-scm-trunk-dir}/${project.artifactId}</url>
22        <connection>scm:svn:${autoquest-scm-trunk-dir}/${project.artifactId}</connection>
23    </scm>
24    <properties>
25        <tested-artifactId>autoquest-htmlmonitor</tested-artifactId>
26    </properties>
27    <dependencies>
28        <dependency>
29            <groupId>de.ugoe.cs.autoquest</groupId>
30            <artifactId>autoquest-plugin-html</artifactId>
31            <version>${project.parent.version}</version>
32            <scope>test</scope>
33        </dependency>
34        <dependency>
35            <groupId>org.apache.httpcomponents</groupId>
36            <artifactId>httpclient</artifactId>
37            <version>4.2.1</version>
38            <scope>test</scope>
39        </dependency>
40    </dependencies>
41    <build>
42        <plugins>
43            <plugin>
44                <groupId>org.apache.maven.plugins</groupId>
45                <artifactId>maven-dependency-plugin</artifactId>
46                <version>2.4</version>
47                <executions>
48                    <execution>
49                        <id>get-htmlmonitor-config</id>
50                        <phase>process-classes</phase>
51                        <goals>
52                            <goal>unpack</goal>
53                        </goals>
54                        <configuration>
55                            <artifactItems>
56                                <artifactItem>
57                                    <groupId>de.ugoe.cs.autoquest</groupId>
58                                    <artifactId>autoquest-htmlmonitor</artifactId>
59                                    <version>${project.parent.version}</version>
60                                    <classifier>config</classifier>
61                                    <type>zip</type>
62                                    <outputDirectory>${basedir}/data</outputDirectory>
63                                </artifactItem>
64                            </artifactItems>
65                        </configuration>
66                    </execution>
67                    <execution>
68                        <id>get-html-plugin-config</id>
69                        <phase>process-classes</phase>
70                        <goals>
71                            <goal>unpack</goal>
72                        </goals>
73                        <configuration>
74                            <artifactItems>
75                                <artifactItem>
76                                    <groupId>de.ugoe.cs.autoquest</groupId>
77                                    <artifactId>autoquest-plugin-html</artifactId>
78                                    <version>${project.parent.version}</version>
79                                    <classifier>config</classifier>
80                                    <type>zip</type>
81                                    <outputDirectory>${basedir}/data</outputDirectory>
82                                </artifactItem>
83                            </artifactItems>
84                        </configuration>
85                    </execution>
86                </executions>
87            </plugin>
88            <plugin>
89                <artifactId>maven-clean-plugin</artifactId>
90                <version>2.5</version>
91                <configuration>
92                    <filesets>
93                        <fileset>
94                            <directory>${basedir}/data</directory>
95                        </fileset>
96                    </filesets>
97                </configuration>
98            </plugin>
99        </plugins>
100    </build>
101</project>
Note: See TracBrowser for help on using the repository browser.