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