source: trunk/autoquest-core-usability-evaluation-test/pom.xml @ 1040

Last change on this file since 1040 was 1030, checked in by adeicke, 11 years ago

Initial commit.

  • Property svn:mime-type set to text/plain
File size: 4.2 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-core-usability-evaluation-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<!--    <repositories>
20
21                <repository>
22                        <id>Unmanaged-Dependency-Repo</id>
23                        <name>Unmanaged-Dependency-Repo</name>
24                        <url>file://${project.basedir}/lib</url>
25                </repository>
26
27        </repositories> -->
28
29        <dependencies>
30                <dependency>
31                        <groupId>de.ugoe.cs.autoquest</groupId>
32                        <artifactId>autoquest-test-utils</artifactId>
33                        <version>0.0.1-SNAPSHOT</version>
34                </dependency>
35                <dependency>
36                        <groupId>de.ugoe.cs.autoquest</groupId>
37                        <artifactId>autoquest-ui-core</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-usability-evaluation</artifactId>
48                        <version>0.0.1-SNAPSHOT</version>
49                </dependency>
50                <dependency>
51                        <groupId>de.ugoe.cs.autoquest</groupId>
52                        <artifactId>autoquest-core-tasktrees</artifactId>
53                        <version>0.0.1-SNAPSHOT</version>
54                </dependency>
55
56                <dependency>
57                        <groupId>org.easytesting</groupId>
58                        <artifactId>fest-assert-core</artifactId>
59                        <version>2.0M8</version>
60                </dependency>
61
62                <dependency>
63                        <groupId>com.jheatchart</groupId>
64                        <artifactId>jheatchart</artifactId>
65                        <version>0.6</version>
66                        <!-- Workaround for Eclipse -->
67                        <scope>system</scope>
68                        <systemPath>${project.basedir}/lib/jheatchart-0.6.jar</systemPath>
69                </dependency>
70        </dependencies>
71
72        <build>
73
74                <pluginManagement>
75                        <plugins>
76                                <plugin>
77                                        <groupId>org.eclipse.m2e</groupId>
78                                        <artifactId>lifecycle-mapping</artifactId>
79                                        <version>1.0.0</version>
80                                        <configuration>
81                                                <lifecycleMappingMetadata>
82                                                        <pluginExecutions>
83                                                                <pluginExecution>
84                                                                        <pluginExecutionFilter>
85                                                                                <groupId>org.apache.maven.plugins</groupId>
86                                                                                <artifactId>maven-dependency-plugin</artifactId>
87                                                                                <versionRange>[1.0.0,)</versionRange>
88                                                                                <goals>
89                                                                                        <goal>get</goal>
90                                                                                </goals>
91                                                                        </pluginExecutionFilter>
92                                                                        <action>
93                                                                                <ignore />
94                                                                        </action>
95                                                                </pluginExecution>
96                                                                <pluginExecution>
97                                                                        <pluginExecutionFilter>
98                                                                                <groupId>org.apache.maven.plugins</groupId>
99                                                                                <artifactId>maven-dependency-plugin</artifactId>
100                                                                                <versionRange>[1.0.0,)</versionRange>
101                                                                                <goals>
102                                                                                        <goal>unpack</goal>
103                                                                                </goals>
104                                                                        </pluginExecutionFilter>
105                                                                        <action>
106                                                                                <ignore />
107                                                                        </action>
108                                                                </pluginExecution>
109                                                        </pluginExecutions>
110                                                </lifecycleMappingMetadata>
111                                        </configuration>
112                                </plugin>
113                        </plugins>
114                </pluginManagement>
115
116                <plugins>
117                        <plugin>
118                                <groupId>org.apache.maven.plugins</groupId>
119                                <artifactId>maven-dependency-plugin</artifactId>
120                                <version>2.4</version>
121                                <executions>
122                                        <execution>
123                                                <id>get-jfc-plugin-config</id>
124                                                <phase>process-classes</phase>
125                                                <goals>
126                                                        <goal>unpack</goal>
127                                                </goals>
128                                                <configuration>
129                                                        <artifactItems>
130                                                                <artifactItem>
131                                                                        <groupId>de.ugoe.cs.autoquest</groupId>
132                                                                        <artifactId>autoquest-plugin-jfc</artifactId>
133                                                                        <version>${project.version}</version>
134                                                                        <classifier>config</classifier>
135                                                                        <type>zip</type>
136                                                                        <outputDirectory>${basedir}/data</outputDirectory>
137                                                                </artifactItem>
138                                                        </artifactItems>
139                                                </configuration>
140                                        </execution>
141                                </executions>
142                        </plugin>
143                </plugins>
144
145        </build>
146
147</project>
Note: See TracBrowser for help on using the repository browser.