source: trunk/quest-ui-core/pom.xml @ 570

Last change on this file since 570 was 527, checked in by sherbold, 12 years ago
  • removed components that were moved to quest-ui-swt and quest-runner from quest-ui-core
  • Property svn:mime-type set to text/plain
File size: 2.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.quest</groupId>
5        <artifactId>quest-ui-core</artifactId>
6        <version>0.0.1-SNAPSHOT</version>
7        <name>quest-ui-core</name>
8        <scm>
9                <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-ui-core</url>
10        </scm>
11        <repositories>
12                <repository>
13                        <id>quest-repo</id>
14                        <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/thirdparty</url>
15                </repository>
16        </repositories>
17        <dependencies>
18                <dependency>
19                        <groupId>de.ugoe.cs</groupId>
20                        <artifactId>java-utils</artifactId>
21                        <version>0.0.1-SNAPSHOT</version>
22                </dependency>
23                <dependency>
24                        <groupId>de.ugoe.cs.quest</groupId>
25                        <artifactId>quest-core-events</artifactId>
26                        <version>0.0.1-SNAPSHOT</version>
27                </dependency>
28                <dependency>
29                        <groupId>de.ugoe.cs.quest</groupId>
30                        <artifactId>quest-core-usageprofiles</artifactId>
31                        <version>0.0.1-SNAPSHOT</version>
32                </dependency>
33                <dependency>
34                        <groupId>de.ugoe.cs.quest</groupId>
35                        <artifactId>quest-core-coverage</artifactId>
36                        <version>0.0.1-SNAPSHOT</version>
37                </dependency>
38                <dependency>
39                        <groupId>de.ugoe.cs.quest</groupId>
40                        <artifactId>quest-core-assertions</artifactId>
41                        <version>0.0.1-SNAPSHOT</version>
42                </dependency>
43                <dependency>
44                        <groupId>de.ugoe.cs.quest</groupId>
45                        <artifactId>quest-core-testgeneration</artifactId>
46                        <version>0.0.1-SNAPSHOT</version>
47                </dependency>
48                <dependency>
49                        <groupId>net.sf.jung</groupId>
50                        <artifactId>jung-visualization</artifactId>
51                        <version>2.0.1</version>
52                </dependency>
53                <dependency>
54                        <groupId>net.sf.jung</groupId>
55                        <artifactId>jung-graph-impl</artifactId>
56                        <version>2.0.1</version>
57                </dependency>
58                <dependency>
59                        <groupId>log4j</groupId>
60                        <artifactId>log4j</artifactId>
61                        <version>1.2.17</version>
62                </dependency>
63                <dependency>
64                        <groupId>commons-codec</groupId>
65                        <artifactId>commons-codec</artifactId>
66                        <version>1.6</version>
67                </dependency>
68                <dependency>
69                        <groupId>jdom</groupId>
70                        <artifactId>jdom</artifactId>
71                        <version>1.1</version>
72                </dependency>
73                <dependency>
74                        <groupId>edu.umd.cs</groupId>
75                        <artifactId>guitar-model-core</artifactId>
76                        <version>1.0</version>
77                </dependency>
78        </dependencies>
79        <build>
80                <plugins>
81                        <plugin>
82                                <artifactId>maven-compiler-plugin</artifactId>
83                                <version>2.3.2</version>
84                                <configuration>
85                                        <source>1.6</source>
86                                        <target>1.6</target>
87                                </configuration>
88                        </plugin>
89                </plugins>
90        </build>
91</project>
Note: See TracBrowser for help on using the repository browser.