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

Last change on this file since 727 was 727, checked in by pharms, 12 years ago
  • added command to generate task trees based on a sequence
  • Property svn:mime-type set to text/plain
File size: 2.5 KB
Line 
1<project
2  xmlns="http://maven.apache.org/POM/4.0.0"
3  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
5>
6  <modelVersion>4.0.0</modelVersion>
7  <groupId>de.ugoe.cs.quest</groupId>
8  <artifactId>quest-ui-core</artifactId>
9  <version>0.0.1-SNAPSHOT</version>
10  <name>quest-ui-core</name>
11  <scm>
12    <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-ui-core</url>
13  </scm>
14  <dependencies>
15    <dependency>
16      <groupId>de.ugoe.cs</groupId>
17      <artifactId>java-utils</artifactId>
18      <version>0.0.1-SNAPSHOT</version>
19    </dependency>
20    <dependency>
21      <groupId>de.ugoe.cs.quest</groupId>
22      <artifactId>quest-misc</artifactId>
23      <version>0.0.1-SNAPSHOT</version>
24    </dependency>
25    <dependency>
26      <groupId>de.ugoe.cs.quest</groupId>
27      <artifactId>quest-core-events</artifactId>
28      <version>0.0.1-SNAPSHOT</version>
29    </dependency>
30    <dependency>
31      <groupId>de.ugoe.cs.quest</groupId>
32      <artifactId>quest-core-usageprofiles</artifactId>
33      <version>0.0.1-SNAPSHOT</version>
34    </dependency>
35    <dependency>
36      <groupId>de.ugoe.cs.quest</groupId>
37      <artifactId>quest-core-coverage</artifactId>
38      <version>0.0.1-SNAPSHOT</version>
39    </dependency>
40    <dependency>
41      <groupId>de.ugoe.cs.quest</groupId>
42      <artifactId>quest-core-assertions</artifactId>
43      <version>0.0.1-SNAPSHOT</version>
44    </dependency>
45    <dependency>
46      <groupId>de.ugoe.cs.quest</groupId>
47      <artifactId>quest-core-testgeneration</artifactId>
48      <version>0.0.1-SNAPSHOT</version>
49    </dependency>
50    <dependency>
51      <groupId>de.ugoe.cs.quest</groupId>
52      <artifactId>quest-core-tasktrees</artifactId>
53      <version>0.0.1-SNAPSHOT</version>
54    </dependency>
55    <dependency>
56      <groupId>net.sf.jung</groupId>
57      <artifactId>jung-visualization</artifactId>
58      <version>2.0.1</version>
59    </dependency>
60    <dependency>
61      <groupId>net.sf.jung</groupId>
62      <artifactId>jung-graph-impl</artifactId>
63      <version>2.0.1</version>
64    </dependency>
65  </dependencies>
66  <build>
67    <plugins>
68      <plugin>
69        <artifactId>maven-compiler-plugin</artifactId>
70        <version>2.3.2</version>
71        <configuration>
72          <source>1.6</source>
73          <target>1.6</target>
74        </configuration>
75      </plugin>
76    </plugins>
77  </build>
78</project>
Note: See TracBrowser for help on using the repository browser.