[516] | 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-jfc</artifactId>
|
---|
| 6 | <version>0.0.1-SNAPSHOT</version>
|
---|
| 7 | <name>quest-plugin-jfc</name>
|
---|
| 8 | <scm>
|
---|
| 9 | <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-plugin-jfc</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>
|
---|
[671] | 22 | <dependency>
|
---|
| 23 | <groupId>de.ugoe.cs.quest</groupId>
|
---|
| 24 | <artifactId>quest-core-events</artifactId>
|
---|
| 25 | <version>0.0.1-SNAPSHOT</version>
|
---|
| 26 | </dependency>
|
---|
| 27 | <dependency>
|
---|
| 28 | <groupId>de.ugoe.cs.quest</groupId>
|
---|
| 29 | <artifactId>quest-misc</artifactId>
|
---|
| 30 | <version>0.0.1-SNAPSHOT</version>
|
---|
| 31 | </dependency>
|
---|
| 32 | <dependency>
|
---|
| 33 | <groupId>net.sourceforge.collections</groupId>
|
---|
| 34 | <artifactId>collections-generic</artifactId>
|
---|
| 35 | <version>4.01</version>
|
---|
| 36 | </dependency>
|
---|
[516] | 37 | </dependencies>
|
---|
| 38 | <build>
|
---|
| 39 | <plugins>
|
---|
| 40 | <plugin>
|
---|
| 41 | <artifactId>maven-compiler-plugin</artifactId>
|
---|
| 42 | <version>2.3.2</version>
|
---|
| 43 | <configuration>
|
---|
| 44 | <source>1.6</source>
|
---|
| 45 | <target>1.6</target>
|
---|
| 46 | </configuration>
|
---|
| 47 | </plugin>
|
---|
[585] | 48 | <plugin>
|
---|
| 49 | <artifactId>maven-assembly-plugin</artifactId>
|
---|
| 50 | <version>2.2-beta-2</version>
|
---|
| 51 | <configuration>
|
---|
| 52 | <descriptors>
|
---|
| 53 | <descriptor>src/main/assembly/config.xml</descriptor>
|
---|
| 54 | </descriptors>
|
---|
| 55 | </configuration>
|
---|
| 56 | <executions>
|
---|
| 57 | <execution>
|
---|
| 58 | <id>make-assembly</id>
|
---|
| 59 | <phase>package</phase>
|
---|
| 60 | <goals>
|
---|
| 61 | <goal>single</goal>
|
---|
| 62 | </goals>
|
---|
| 63 | </execution>
|
---|
| 64 | </executions>
|
---|
| 65 | </plugin>
|
---|
[516] | 66 | </plugins>
|
---|
| 67 | </build>
|
---|
| 68 | </project> |
---|