Changeset 1069 for trunk/autoquest-htmlmonitor-test/pom.xml
- Timestamp:
- 02/14/13 15:20:07 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-htmlmonitor-test/pom.xml
r1011 r1069 22 22 <dependencies> 23 23 <dependency> 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> 24 30 <groupId>org.apache.httpcomponents</groupId> 25 31 <artifactId>httpclient</artifactId> … … 28 34 </dependency> 29 35 </dependencies> 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> 30 96 </project>
Note: See TracChangeset
for help on using the changeset viewer.