source: tags/autoquest-release-0.1.1/autoquest-androidmonitor-test/pom.xml @ 2178

Last change on this file since 2178 was 1547, checked in by sherbold, 10 years ago
  • initial commit for autoquest android plugin and monitor
  • Property svn:mime-type set to text/plain
File size: 3.9 KB
Line 
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.1-SNAPSHOT</version>
6        <relativePath>../autoquest-test/pom.xml</relativePath>
7    </parent>
8    <modelVersion>4.0.0</modelVersion>
9    <artifactId>autoquest-androidmonitor-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-androidmonitor</tested-artifactId>
22        <tomcat.version>7.0.34</tomcat.version>
23    </properties>
24    <dependencies>
25        <!-- none -->
26    </dependencies>
27    <build>
28        <plugins>
29            <plugin>
30                <groupId>org.apache.maven.plugins</groupId>
31                <artifactId>maven-dependency-plugin</artifactId>
32                <version>2.4</version>
33                <executions>
34                    <execution>
35                        <id>get-androidmonitor-config</id>
36                        <phase>process-classes</phase>
37                        <goals>
38                            <goal>unpack</goal>
39                        </goals>
40                        <configuration>
41                            <artifactItems>
42                                <artifactItem>
43                                    <groupId>de.ugoe.cs.autoquest</groupId>
44                                    <artifactId>autoquest-androidmonitor</artifactId>
45                                    <version>${project.parent.version}</version>
46                                    <classifier>config</classifier>
47                                    <type>zip</type>
48                                    <outputDirectory>${basedir}/data</outputDirectory>
49                                </artifactItem>
50                            </artifactItems>
51                        </configuration>
52                    </execution>
53                    <execution>
54                        <id>get-android-plugin-config</id>
55                        <phase>process-classes</phase>
56                        <goals>
57                            <goal>unpack</goal>
58                        </goals>
59                        <configuration>
60                            <artifactItems>
61                                <artifactItem>
62                                    <groupId>de.ugoe.cs.autoquest</groupId>
63                                    <artifactId>autoquest-plugin-android</artifactId>
64                                    <version>${project.parent.version}</version>
65                                    <classifier>config</classifier>
66                                    <type>zip</type>
67                                    <outputDirectory>${basedir}/data</outputDirectory>
68                                </artifactItem>
69                            </artifactItems>
70                        </configuration>
71                    </execution>
72                </executions>
73            </plugin>
74            <plugin>
75                <artifactId>maven-clean-plugin</artifactId>
76                <version>2.5</version>
77                <configuration>
78                    <filesets>
79                        <fileset>
80                            <directory>${basedir}/data</directory>
81                        </fileset>
82                    </filesets>
83                </configuration>
84            </plugin>
85        </plugins>
86    </build>
87</project>
Note: See TracBrowser for help on using the repository browser.