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 | <repositories>
|
---|
15 | <repository>
|
---|
16 | <id>quest-repo</id>
|
---|
17 | <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/thirdparty</url>
|
---|
18 | </repository>
|
---|
19 | </repositories>
|
---|
20 | <dependencies>
|
---|
21 | <dependency>
|
---|
22 | <groupId>de.ugoe.cs</groupId>
|
---|
23 | <artifactId>java-utils</artifactId>
|
---|
24 | <version>0.0.1-SNAPSHOT</version>
|
---|
25 | </dependency>
|
---|
26 | <dependency>
|
---|
27 | <groupId>de.ugoe.cs.quest</groupId>
|
---|
28 | <artifactId>quest-core-events</artifactId>
|
---|
29 | <version>0.0.1-SNAPSHOT</version>
|
---|
30 | </dependency>
|
---|
31 | <dependency>
|
---|
32 | <groupId>de.ugoe.cs.quest</groupId>
|
---|
33 | <artifactId>quest-core-usageprofiles</artifactId>
|
---|
34 | <version>0.0.1-SNAPSHOT</version>
|
---|
35 | </dependency>
|
---|
36 | <dependency>
|
---|
37 | <groupId>de.ugoe.cs.quest</groupId>
|
---|
38 | <artifactId>quest-core-coverage</artifactId>
|
---|
39 | <version>0.0.1-SNAPSHOT</version>
|
---|
40 | </dependency>
|
---|
41 | <dependency>
|
---|
42 | <groupId>de.ugoe.cs.quest</groupId>
|
---|
43 | <artifactId>quest-core-assertions</artifactId>
|
---|
44 | <version>0.0.1-SNAPSHOT</version>
|
---|
45 | </dependency>
|
---|
46 | <dependency>
|
---|
47 | <groupId>de.ugoe.cs.quest</groupId>
|
---|
48 | <artifactId>quest-core-testgeneration</artifactId>
|
---|
49 | <version>0.0.1-SNAPSHOT</version>
|
---|
50 | </dependency>
|
---|
51 | <dependency>
|
---|
52 | <groupId>net.sf.jung</groupId>
|
---|
53 | <artifactId>jung-visualization</artifactId>
|
---|
54 | <version>2.0.1</version>
|
---|
55 | </dependency>
|
---|
56 | <dependency>
|
---|
57 | <groupId>net.sf.jung</groupId>
|
---|
58 | <artifactId>jung-graph-impl</artifactId>
|
---|
59 | <version>2.0.1</version>
|
---|
60 | </dependency>
|
---|
61 | <dependency>
|
---|
62 | <groupId>log4j</groupId>
|
---|
63 | <artifactId>log4j</artifactId>
|
---|
64 | <version>1.2.17</version>
|
---|
65 | </dependency>
|
---|
66 | <dependency>
|
---|
67 | <groupId>edu.umd.cs</groupId>
|
---|
68 | <artifactId>guitar-model-core</artifactId>
|
---|
69 | <version>1.0</version>
|
---|
70 | </dependency>
|
---|
71 | </dependencies>
|
---|
72 | <build>
|
---|
73 | <plugins>
|
---|
74 | <plugin>
|
---|
75 | <artifactId>maven-compiler-plugin</artifactId>
|
---|
76 | <version>2.3.2</version>
|
---|
77 | <configuration>
|
---|
78 | <source>1.6</source>
|
---|
79 | <target>1.6</target>
|
---|
80 | </configuration>
|
---|
81 | </plugin>
|
---|
82 | <plugin>
|
---|
83 | <artifactId>maven-assembly-plugin</artifactId>
|
---|
84 | <version>2.2-beta-2</version>
|
---|
85 | <configuration>
|
---|
86 | <descriptors>
|
---|
87 | <descriptor>src/main/assembly/config.xml</descriptor>
|
---|
88 | </descriptors>
|
---|
89 | </configuration>
|
---|
90 | <executions>
|
---|
91 | <execution>
|
---|
92 | <id>make-assembly</id>
|
---|
93 | <phase>package</phase>
|
---|
94 | <goals>
|
---|
95 | <goal>single</goal>
|
---|
96 | </goals>
|
---|
97 | </execution>
|
---|
98 | </executions>
|
---|
99 | </plugin>
|
---|
100 | </plugins>
|
---|
101 | </build>
|
---|
102 | </project> |
---|