| 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 | <parent>
|
|---|
| 4 | <groupId>de.ugoe.cs.quest</groupId>
|
|---|
| 5 | <artifactId>quest</artifactId>
|
|---|
| 6 | <version>0.0.1-SNAPSHOT</version>
|
|---|
| 7 | </parent>
|
|---|
| 8 | <modelVersion>4.0.0</modelVersion>
|
|---|
| 9 | <artifactId>quest-plugin-jfc</artifactId>
|
|---|
| 10 | <name>quest-plugin-jfc</name>
|
|---|
| 11 | <scm>
|
|---|
| 12 | <url>${quest-scm-trunk-dir}/quest-plugin-jfc</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-plugin-core</artifactId>
|
|---|
| 23 | <version>${parent.version}</version>
|
|---|
| 24 | </dependency>
|
|---|
| 25 | <dependency>
|
|---|
| 26 | <groupId>de.ugoe.cs.quest</groupId>
|
|---|
| 27 | <artifactId>quest-core-events</artifactId>
|
|---|
| 28 | <version>${parent.version}</version>
|
|---|
| 29 | </dependency>
|
|---|
| 30 | <dependency>
|
|---|
| 31 | <groupId>de.ugoe.cs.quest</groupId>
|
|---|
| 32 | <artifactId>quest-misc</artifactId>
|
|---|
| 33 | <version>${parent.version}</version>
|
|---|
| 34 | </dependency>
|
|---|
| 35 | <dependency>
|
|---|
| 36 | <groupId>net.sourceforge.collections</groupId>
|
|---|
| 37 | <artifactId>collections-generic</artifactId>
|
|---|
| 38 | <version>4.01</version>
|
|---|
| 39 | </dependency>
|
|---|
| 40 | </dependencies>
|
|---|
| 41 | <build>
|
|---|
| 42 | <plugins>
|
|---|
| 43 | <plugin>
|
|---|
| 44 | <artifactId>maven-assembly-plugin</artifactId>
|
|---|
| 45 | <version>2.2-beta-2</version>
|
|---|
| 46 | <configuration>
|
|---|
| 47 | <descriptors>
|
|---|
| 48 | <descriptor>src/main/assembly/config.xml</descriptor>
|
|---|
| 49 | </descriptors>
|
|---|
| 50 | </configuration>
|
|---|
| 51 | <executions>
|
|---|
| 52 | <execution>
|
|---|
| 53 | <id>make-assembly</id>
|
|---|
| 54 | <phase>package</phase>
|
|---|
| 55 | <goals>
|
|---|
| 56 | <goal>single</goal>
|
|---|
| 57 | </goals>
|
|---|
| 58 | </execution>
|
|---|
| 59 | </executions>
|
|---|
| 60 | </plugin>
|
|---|
| 61 | </plugins>
|
|---|
| 62 | </build>
|
|---|
| 63 | </project> |
|---|