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

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

Removed jsr305 dependency from pom.

  • Property svn:mime-type set to text/plain
File size: 1.8 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>com.google.guava</groupId>
43                        <artifactId>guava</artifactId>
44                        <version>14.0-rc1</version>
45                </dependency>
46        </dependencies>
47
48        <build>
49
50                <plugins>
51                        <plugin>
52                                <groupId>org.jvnet.jaxb2.maven2</groupId>
53                                <artifactId>maven-jaxb2-plugin</artifactId>
54                                <version>0.8.2</version>
55                                <configuration>
56                                        <generatePackage>de.ugoe.cs.autoquest.usability</generatePackage>
57                                </configuration>
58                                <executions>
59                                        <execution>
60                                                <goals>
61                                                        <goal>generate</goal>
62                                                </goals>
63                                        </execution>
64                                </executions>
65                        </plugin>
66                </plugins>
67
68        </build>
69
70</project>
Note: See TracBrowser for help on using the repository browser.