source: trunk/quest-plugin-mfc/pom.xml @ 621

Last change on this file since 621 was 581, checked in by sherbold, 12 years ago
  • some updates to the assembly configuration
  • moved MFC plugin code from quest-ui-core to quest-plugin-mfc
  • Property svn:mime-type set to text/plain
File size: 2.2 KB
Line 
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>net.sourceforge.collections</groupId>
29                        <artifactId>collections-generic</artifactId>
30                        <version>4.01</version>
31                </dependency>
32                <dependency>
33                        <groupId>jdom</groupId>
34                        <artifactId>jdom</artifactId>
35                        <version>1.1</version>
36                </dependency>
37                <dependency>
38                        <groupId>de.ugoe.cs.quest</groupId>
39                        <artifactId>quest-core-events</artifactId>
40                        <version>0.0.1-SNAPSHOT</version>
41                </dependency>
42                <dependency>
43                        <groupId>de.ugoe.cs.quest</groupId>
44                        <artifactId>quest-ui-core</artifactId>
45                        <version>0.0.1-SNAPSHOT</version>
46                </dependency>
47        </dependencies>
48        <build>
49                <plugins>
50                        <plugin>
51                                <artifactId>maven-compiler-plugin</artifactId>
52                                <version>2.3.2</version>
53                                <configuration>
54                                        <source>1.6</source>
55                                        <target>1.6</target>
56                                </configuration>
57                        </plugin>
58                        <plugin>
59                                <artifactId>maven-assembly-plugin</artifactId>
60                                <version>2.2-beta-2</version>
61                                <configuration>
62                                        <descriptors>
63                                                <descriptor>src/main/assembly/config.xml</descriptor>
64                                        </descriptors>
65                                </configuration>
66                                <executions>
67                                        <execution>
68                                                <id>make-assembly</id>
69                                                <phase>package</phase>
70                                                <goals>
71                                                        <goal>single</goal>
72                                                </goals>
73                                        </execution>
74                                </executions>
75                        </plugin>
76                </plugins>
77        </build>
78</project>
Note: See TracBrowser for help on using the repository browser.