[1011] | 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-htmlmonitor-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-htmlmonitor</tested-artifactId> |
---|
| 21 | </properties> |
---|
| 22 | <dependencies> |
---|
| 23 | <dependency> |
---|
[1069] | 24 | <groupId>de.ugoe.cs.autoquest</groupId> |
---|
| 25 | <artifactId>autoquest-plugin-html</artifactId> |
---|
| 26 | <version>${tested-autoquest-version}</version> |
---|
| 27 | <scope>test</scope> |
---|
| 28 | </dependency> |
---|
| 29 | <dependency> |
---|
[1011] | 30 | <groupId>org.apache.httpcomponents</groupId> |
---|
| 31 | <artifactId>httpclient</artifactId> |
---|
| 32 | <version>4.2.1</version> |
---|
| 33 | <scope>test</scope> |
---|
| 34 | </dependency> |
---|
| 35 | </dependencies> |
---|
[1069] | 36 | <build> |
---|
| 37 | <plugins> |
---|
| 38 | <plugin> |
---|
| 39 | <groupId>org.apache.maven.plugins</groupId> |
---|
| 40 | <artifactId>maven-dependency-plugin</artifactId> |
---|
| 41 | <version>2.4</version> |
---|
| 42 | <executions> |
---|
| 43 | <execution> |
---|
| 44 | <id>get-htmlmonitor-config</id> |
---|
| 45 | <phase>process-classes</phase> |
---|
| 46 | <goals> |
---|
| 47 | <goal>unpack</goal> |
---|
| 48 | </goals> |
---|
| 49 | <configuration> |
---|
| 50 | <artifactItems> |
---|
| 51 | <artifactItem> |
---|
| 52 | <groupId>de.ugoe.cs.autoquest</groupId> |
---|
| 53 | <artifactId>autoquest-htmlmonitor</artifactId> |
---|
| 54 | <version>${tested-autoquest-version}</version> |
---|
| 55 | <classifier>config</classifier> |
---|
| 56 | <type>zip</type> |
---|
| 57 | <outputDirectory>${basedir}/data</outputDirectory> |
---|
| 58 | </artifactItem> |
---|
| 59 | </artifactItems> |
---|
| 60 | </configuration> |
---|
| 61 | </execution> |
---|
| 62 | <execution> |
---|
| 63 | <id>get-html-plugin-config</id> |
---|
| 64 | <phase>process-classes</phase> |
---|
| 65 | <goals> |
---|
| 66 | <goal>unpack</goal> |
---|
| 67 | </goals> |
---|
| 68 | <configuration> |
---|
| 69 | <artifactItems> |
---|
| 70 | <artifactItem> |
---|
| 71 | <groupId>de.ugoe.cs.autoquest</groupId> |
---|
| 72 | <artifactId>autoquest-plugin-html</artifactId> |
---|
| 73 | <version>${tested-autoquest-version}</version> |
---|
| 74 | <classifier>config</classifier> |
---|
| 75 | <type>zip</type> |
---|
| 76 | <outputDirectory>${basedir}/data</outputDirectory> |
---|
| 77 | </artifactItem> |
---|
| 78 | </artifactItems> |
---|
| 79 | </configuration> |
---|
| 80 | </execution> |
---|
| 81 | </executions> |
---|
| 82 | </plugin> |
---|
| 83 | <plugin> |
---|
| 84 | <artifactId>maven-clean-plugin</artifactId> |
---|
| 85 | <version>2.5</version> |
---|
| 86 | <configuration> |
---|
| 87 | <filesets> |
---|
| 88 | <fileset> |
---|
| 89 | <directory>${basedir}/data</directory> |
---|
| 90 | </fileset> |
---|
| 91 | </filesets> |
---|
| 92 | </configuration> |
---|
| 93 | </plugin> |
---|
| 94 | </plugins> |
---|
| 95 | </build> |
---|
[864] | 96 | </project> |
---|