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

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

Replaced generation of defect description from XMl through plain Java property file.

  • Property svn:mime-type set to text/plain
File size: 2.0 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
47                <dependency>
48                        <groupId>org.jodd</groupId>
49                        <artifactId>jodd-props</artifactId>
50                        <version>3.4.2</version>
51                </dependency>
52        </dependencies>
53
54        <!--
55        <build>
56
57                <plugins>
58                        <plugin>
59                                <groupId>org.jvnet.jaxb2.maven2</groupId>
60                                <artifactId>maven-jaxb2-plugin</artifactId>
61                                <version>0.8.2</version>
62                                <configuration>
63                                        <generatePackage>de.ugoe.cs.autoquest.usability</generatePackage>
64                                </configuration>
65                                <executions>
66                                        <execution>
67                                                <goals>
68                                                        <goal>generate</goal>
69                                                </goals>
70                                        </execution>
71                                </executions>
72                        </plugin>
73                </plugins>
74
75        </build>
76         -->
77
78</project>
Note: See TracBrowser for help on using the repository browser.