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

Last change on this file since 1171 was 1105, checked in by adeicke, 11 years ago

Removed dependency to jheartchart library.

  • Property svn:mime-type set to text/plain
File size: 3.7 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        <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-jfc</artifactId>
33                        <version>0.0.1-SNAPSHOT</version>
34                </dependency>
35                <dependency>
36                        <groupId>de.ugoe.cs.autoquest</groupId>
37                        <artifactId>autoquest-core-usability-evaluation</artifactId>
38                        <version>0.0.1-SNAPSHOT</version>
39                </dependency>
40                <dependency>
41                        <groupId>de.ugoe.cs.autoquest</groupId>
42                        <artifactId>autoquest-core-tasktrees</artifactId>
43                        <version>0.0.1-SNAPSHOT</version>
44                </dependency>
45
46                <dependency>
47                        <groupId>org.easytesting</groupId>
48                        <artifactId>fest-assert-core</artifactId>
49                        <version>2.0M8</version>
50                </dependency>
51
52        </dependencies>
53
54        <build>
55
56                <pluginManagement>
57                        <plugins>
58                                <plugin>
59                                        <groupId>org.eclipse.m2e</groupId>
60                                        <artifactId>lifecycle-mapping</artifactId>
61                                        <version>1.0.0</version>
62                                        <configuration>
63                                                <lifecycleMappingMetadata>
64                                                        <pluginExecutions>
65                                                                <pluginExecution>
66                                                                        <pluginExecutionFilter>
67                                                                                <groupId>org.apache.maven.plugins</groupId>
68                                                                                <artifactId>maven-dependency-plugin</artifactId>
69                                                                                <versionRange>[1.0.0,)</versionRange>
70                                                                                <goals>
71                                                                                        <goal>get</goal>
72                                                                                </goals>
73                                                                        </pluginExecutionFilter>
74                                                                        <action>
75                                                                                <ignore />
76                                                                        </action>
77                                                                </pluginExecution>
78                                                                <pluginExecution>
79                                                                        <pluginExecutionFilter>
80                                                                                <groupId>org.apache.maven.plugins</groupId>
81                                                                                <artifactId>maven-dependency-plugin</artifactId>
82                                                                                <versionRange>[1.0.0,)</versionRange>
83                                                                                <goals>
84                                                                                        <goal>unpack</goal>
85                                                                                </goals>
86                                                                        </pluginExecutionFilter>
87                                                                        <action>
88                                                                                <ignore />
89                                                                        </action>
90                                                                </pluginExecution>
91                                                        </pluginExecutions>
92                                                </lifecycleMappingMetadata>
93                                        </configuration>
94                                </plugin>
95                        </plugins>
96                </pluginManagement>
97
98                <plugins>
99                        <plugin>
100                                <groupId>org.apache.maven.plugins</groupId>
101                                <artifactId>maven-dependency-plugin</artifactId>
102                                <version>2.4</version>
103                                <executions>
104                                        <execution>
105                                                <id>get-jfc-plugin-config</id>
106                                                <phase>process-classes</phase>
107                                                <goals>
108                                                        <goal>unpack</goal>
109                                                </goals>
110                                                <configuration>
111                                                        <artifactItems>
112                                                                <artifactItem>
113                                                                        <groupId>de.ugoe.cs.autoquest</groupId>
114                                                                        <artifactId>autoquest-plugin-jfc</artifactId>
115                                                                        <version>${project.version}</version>
116                                                                        <classifier>config</classifier>
117                                                                        <type>zip</type>
118                                                                        <outputDirectory>${basedir}/data</outputDirectory>
119                                                                </artifactItem>
120                                                        </artifactItems>
121                                                </configuration>
122                                        </execution>
123                                </executions>
124                        </plugin>
125                </plugins>
126
127        </build>
128
129</project>
Note: See TracBrowser for help on using the repository browser.