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-plugin-mfc</artifactId>
|
---|
6 | <version>0.0.1-SNAPSHOT</version>
|
---|
7 | <name>quest-plugin-mfc</name>
|
---|
8 | <scm>
|
---|
9 | <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-plugin-mfc</url>
|
---|
10 | </scm>
|
---|
11 | <dependencies>
|
---|
12 | <dependency>
|
---|
13 | <groupId>de.ugoe.cs</groupId>
|
---|
14 | <artifactId>java-utils</artifactId>
|
---|
15 | <version>0.0.1-SNAPSHOT</version>
|
---|
16 | </dependency>
|
---|
17 | <dependency>
|
---|
18 | <groupId>de.ugoe.cs.quest</groupId>
|
---|
19 | <artifactId>quest-plugin-core</artifactId>
|
---|
20 | <version>0.0.1-SNAPSHOT</version>
|
---|
21 | </dependency>
|
---|
22 | <dependency>
|
---|
23 | <groupId>commons-codec</groupId>
|
---|
24 | <artifactId>commons-codec</artifactId>
|
---|
25 | <version>1.6</version>
|
---|
26 | </dependency>
|
---|
27 | <dependency>
|
---|
28 | <groupId>jdom</groupId>
|
---|
29 | <artifactId>jdom</artifactId>
|
---|
30 | <version>1.1</version>
|
---|
31 | </dependency>
|
---|
32 | <dependency>
|
---|
33 | <groupId>de.ugoe.cs.quest</groupId>
|
---|
34 | <artifactId>quest-core-events</artifactId>
|
---|
35 | <version>0.0.1-SNAPSHOT</version>
|
---|
36 | </dependency>
|
---|
37 | <dependency>
|
---|
38 | <groupId>de.ugoe.cs.quest</groupId>
|
---|
39 | <artifactId>quest-misc</artifactId>
|
---|
40 | <version>0.0.1-SNAPSHOT</version>
|
---|
41 | </dependency>
|
---|
42 | </dependencies>
|
---|
43 | <build>
|
---|
44 | <plugins>
|
---|
45 | <plugin>
|
---|
46 | <artifactId>maven-compiler-plugin</artifactId>
|
---|
47 | <version>2.3.2</version>
|
---|
48 | <configuration>
|
---|
49 | <source>1.6</source>
|
---|
50 | <target>1.6</target>
|
---|
51 | </configuration>
|
---|
52 | </plugin>
|
---|
53 | <plugin>
|
---|
54 | <artifactId>maven-assembly-plugin</artifactId>
|
---|
55 | <version>2.2-beta-2</version>
|
---|
56 | <configuration>
|
---|
57 | <descriptors>
|
---|
58 | <descriptor>src/main/assembly/config.xml</descriptor>
|
---|
59 | </descriptors>
|
---|
60 | </configuration>
|
---|
61 | <executions>
|
---|
62 | <execution>
|
---|
63 | <id>make-assembly</id>
|
---|
64 | <phase>package</phase>
|
---|
65 | <goals>
|
---|
66 | <goal>single</goal>
|
---|
67 | </goals>
|
---|
68 | </execution>
|
---|
69 | </executions>
|
---|
70 | </plugin>
|
---|
71 | </plugins>
|
---|
72 | </build>
|
---|
73 | </project> |
---|