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

Last change on this file since 579 was 579, checked in by pharms, 12 years ago
  • initial support for building assemblies of quest including the plugins
  • Property svn:mime-type set to text/plain
File size: 3.4 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  <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>commons-codec</groupId>
68      <artifactId>commons-codec</artifactId>
69      <version>1.6</version>
70    </dependency>
71    <dependency>
72      <groupId>jdom</groupId>
73      <artifactId>jdom</artifactId>
74      <version>1.1</version>
75    </dependency>
76    <dependency>
77      <groupId>edu.umd.cs</groupId>
78      <artifactId>guitar-model-core</artifactId>
79      <version>1.0</version>
80    </dependency>
81  </dependencies>
82  <build>
83    <plugins>
84      <plugin>
85        <artifactId>maven-compiler-plugin</artifactId>
86        <version>2.3.2</version>
87        <configuration>
88          <source>1.6</source>
89          <target>1.6</target>
90        </configuration>
91      </plugin>
92      <plugin>
93        <artifactId>maven-assembly-plugin</artifactId>
94        <version>2.2-beta-2</version>
95        <configuration>
96          <descriptors>
97            <descriptor>src/main/assembly/config.xml</descriptor>
98          </descriptors>
99        </configuration>
100        <executions>
101          <execution>
102            <id>make-assembly</id>
103            <phase>package</phase>
104            <goals>
105              <goal>single</goal>
106            </goals>
107          </execution>
108        </executions>
109      </plugin>
110    </plugins>
111  </build>
112</project>
Note: See TracBrowser for help on using the repository browser.