[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">
|
---|
[757] | 3 | <parent>
|
---|
| 4 | <groupId>de.ugoe.cs.quest</groupId>
|
---|
| 5 | <artifactId>quest</artifactId>
|
---|
| 6 | <version>0.0.1-SNAPSHOT</version>
|
---|
| 7 | </parent>
|
---|
[516] | 8 | <modelVersion>4.0.0</modelVersion>
|
---|
| 9 | <artifactId>quest-plugin-mfc</artifactId>
|
---|
| 10 | <name>quest-plugin-mfc</name>
|
---|
| 11 | <scm>
|
---|
[757] | 12 | <url>${quest-scm-trunk-dir}/quest-plugin-mfc</url>
|
---|
[516] | 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>
|
---|
[757] | 23 | <version>${parent.version}</version>
|
---|
[516] | 24 | </dependency>
|
---|
[581] | 25 | <dependency>
|
---|
| 26 | <groupId>commons-codec</groupId>
|
---|
| 27 | <artifactId>commons-codec</artifactId>
|
---|
| 28 | <version>1.6</version>
|
---|
| 29 | </dependency>
|
---|
| 30 | <dependency>
|
---|
| 31 | <groupId>jdom</groupId>
|
---|
| 32 | <artifactId>jdom</artifactId>
|
---|
| 33 | <version>1.1</version>
|
---|
| 34 | </dependency>
|
---|
| 35 | <dependency>
|
---|
| 36 | <groupId>de.ugoe.cs.quest</groupId>
|
---|
| 37 | <artifactId>quest-core-events</artifactId>
|
---|
[757] | 38 | <version>${parent.version}</version>
|
---|
[581] | 39 | </dependency>
|
---|
| 40 | <dependency>
|
---|
| 41 | <groupId>de.ugoe.cs.quest</groupId>
|
---|
[671] | 42 | <artifactId>quest-misc</artifactId>
|
---|
[757] | 43 | <version>${parent.version}</version>
|
---|
[581] | 44 | </dependency>
|
---|
[516] | 45 | </dependencies>
|
---|
| 46 | <build>
|
---|
| 47 | <plugins>
|
---|
| 48 | <plugin>
|
---|
[581] | 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> |
---|