source: tags/autoquest-pre-usability-evaluation-refactoring/autoquest-core-usability-evaluation/pom.xml

Last change on this file was 1288, checked in by adeicke, 11 years ago

Added dependency.

  • Property svn:mime-type set to text/plain
File size: 2.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        <artifactId>autoquest-core-usability-evaluation</artifactId>
5
6        <parent>
7                <groupId>de.ugoe.cs.autoquest</groupId>
8                <artifactId>autoquest</artifactId>
9                <version>0.0.1-SNAPSHOT</version>
10        </parent>
11
12        <licenses>
13                <license>
14                        <name>The Apache Software License, Version 2.0</name>
15                        <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
16                </license>
17        </licenses>
18
19        <scm>
20                <url>${autoquest-scm-trunk-dir}/autoquest-core-usability-evaluation</url>
21        </scm>
22
23        <dependencies>
24
25                <dependency>
26                        <groupId>de.ugoe.cs.autoquest</groupId>
27                        <artifactId>autoquest-core-tasktrees</artifactId>
28                        <version>${project.parent.version}</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-plugin-html</artifactId>
38                        <version>0.0.1-SNAPSHOT</version>
39                </dependency>
40               
41                <dependency>
42                        <groupId>de.ugoe.cs.autoquest</groupId>
43                        <artifactId>autoquest-test-utils</artifactId>
44                        <version>0.0.1-SNAPSHOT</version>
45                </dependency>
46               
47                <dependency>
48                        <groupId>com.google.guava</groupId>
49                        <artifactId>guava</artifactId>
50                        <version>14.0-rc1</version>
51                </dependency>
52
53                <dependency>
54                        <groupId>org.jodd</groupId>
55                        <artifactId>jodd-props</artifactId>
56                        <version>3.4.2</version>
57                </dependency>
58        </dependencies>
59
60        <!--
61        <build>
62
63                <plugins>
64                        <plugin>
65                                <groupId>org.jvnet.jaxb2.maven2</groupId>
66                                <artifactId>maven-jaxb2-plugin</artifactId>
67                                <version>0.8.2</version>
68                                <configuration>
69                                        <generatePackage>de.ugoe.cs.autoquest.usability</generatePackage>
70                                </configuration>
71                                <executions>
72                                        <execution>
73                                                <goals>
74                                                        <goal>generate</goal>
75                                                </goals>
76                                        </execution>
77                                </executions>
78                        </plugin>
79                </plugins>
80
81        </build>
82         -->
83
84</project>
Note: See TracBrowser for help on using the repository browser.