source: trunk/autoquest-plugin-usability2-test/pom.xml @ 1943

Last change on this file since 1943 was 1326, checked in by khartmann, 10 years ago

Moved alexanders code into a new plugin project.
First commit of my experimental code (needs a lot of cleanup).

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"
2        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3        <modelVersion>4.0.0</modelVersion>
4        <groupId>de.ugoe.cs.autoquest</groupId>
5        <artifactId>autoquest-plugin-usability2-test</artifactId>
6        <version>0.0.1-SNAPSHOT</version>
7
8        <licenses>
9                <license>
10                        <name>The Apache Software License, Version 2.0</name>
11                        <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
12                </license>
13        </licenses>
14
15        <properties>
16                <tested-artifactId>autoquest-task-trees-integration-tst</tested-artifactId>
17        </properties>
18
19        <dependencies>
20                <dependency>
21                        <groupId>de.ugoe.cs.autoquest</groupId>
22                        <artifactId>autoquest-test-utils</artifactId>
23                        <version>0.0.1-SNAPSHOT</version>
24                </dependency>
25                <dependency>
26                        <groupId>de.ugoe.cs.autoquest</groupId>
27                        <artifactId>autoquest-ui-core</artifactId>
28                        <version>0.0.1-SNAPSHOT</version>
29                </dependency>
30                <dependency>
31                        <groupId>de.ugoe.cs.autoquest</groupId>
32                        <artifactId>autoquest-plugin-usability2</artifactId>
33                        <version>0.0.1-SNAPSHOT</version>
34                </dependency>
35                <dependency>
36                        <groupId>de.ugoe.cs.autoquest</groupId>
37                        <artifactId>autoquest-plugin-html</artifactId>
38                        <version>0.0.1-SNAPSHOT</version>
39                </dependency>
40                <dependency>
41                        <groupId>de.ugoe.cs.autoquest</groupId>
42                        <artifactId>autoquest-plugin-jfc</artifactId>
43                        <version>0.0.1-SNAPSHOT</version>
44                </dependency>
45                <dependency>
46                        <groupId>de.ugoe.cs.autoquest</groupId>
47                        <artifactId>autoquest-core-tasktrees</artifactId>
48                        <version>0.0.1-SNAPSHOT</version>
49                </dependency>
50                <dependency>
51                        <groupId>org.easytesting</groupId>
52                        <artifactId>fest-assert-core</artifactId>
53                        <version>2.0M8</version>
54                </dependency>
55
56        </dependencies>
57
58        <build>
59
60                <pluginManagement>
61                        <plugins>
62                                <plugin>
63                                        <groupId>org.eclipse.m2e</groupId>
64                                        <artifactId>lifecycle-mapping</artifactId>
65                                        <version>1.0.0</version>
66                                        <configuration>
67                                                <lifecycleMappingMetadata>
68                                                        <pluginExecutions>
69                                                                <pluginExecution>
70                                                                        <pluginExecutionFilter>
71                                                                                <groupId>org.apache.maven.plugins</groupId>
72                                                                                <artifactId>maven-dependency-plugin</artifactId>
73                                                                                <versionRange>[1.0.0,)</versionRange>
74                                                                                <goals>
75                                                                                        <goal>get</goal>
76                                                                                </goals>
77                                                                        </pluginExecutionFilter>
78                                                                        <action>
79                                                                                <ignore />
80                                                                        </action>
81                                                                </pluginExecution>
82                                                                <pluginExecution>
83                                                                        <pluginExecutionFilter>
84                                                                                <groupId>org.apache.maven.plugins</groupId>
85                                                                                <artifactId>maven-dependency-plugin</artifactId>
86                                                                                <versionRange>[1.0.0,)</versionRange>
87                                                                                <goals>
88                                                                                        <goal>unpack</goal>
89                                                                                </goals>
90                                                                        </pluginExecutionFilter>
91                                                                        <action>
92                                                                                <ignore />
93                                                                        </action>
94                                                                </pluginExecution>
95                                                        </pluginExecutions>
96                                                </lifecycleMappingMetadata>
97                                        </configuration>
98                                </plugin>
99                        </plugins>
100                </pluginManagement>
101
102                <plugins>
103                        <plugin>
104                                <groupId>org.apache.maven.plugins</groupId>
105                                <artifactId>maven-dependency-plugin</artifactId>
106                                <version>2.4</version>
107                                <executions>
108                                        <execution>
109                                                <id>get-jfc-plugin-config</id>
110                                                <phase>process-classes</phase>
111                                                <goals>
112                                                        <goal>unpack</goal>
113                                                </goals>
114                                                <configuration>
115                                                        <artifactItems>
116                                                                <artifactItem>
117                                                                        <groupId>de.ugoe.cs.autoquest</groupId>
118                                                                        <artifactId>autoquest-plugin-jfc</artifactId>
119                                                                        <version>${project.version}</version>
120                                                                        <classifier>config</classifier>
121                                                                        <type>zip</type>
122                                                                        <outputDirectory>${basedir}/data</outputDirectory>
123                                                                </artifactItem>
124                                                        </artifactItems>
125                                                </configuration>
126                                        </execution>
127                                </executions>
128                        </plugin>
129                </plugins>
130
131        </build>
132
133</project>
Note: See TracBrowser for help on using the repository browser.