source: trunk/quest-plugin-jfc/pom.xml @ 622

Last change on this file since 622 was 585, checked in by sherbold, 12 years ago
  • rewrote create of GUI elements by the IGUIElementFactory implementations. We now do not require platform-specific GUI element factories. Instead, mappings files located in the folder data/guimappings that start with guimapping- and and with .txt are used to determine which classes in the GUI structure belong to which GUI elements.
  • Property svn:mime-type set to text/plain
File size: 1.8 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-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>
22                <dependency>
23                        <groupId>de.ugoe.cs.quest</groupId>
24                        <artifactId>quest-ui-core</artifactId>
25                        <version>0.0.1-SNAPSHOT</version>
26                </dependency>
27        </dependencies>
28        <build>
29                <plugins>
30                        <plugin>
31                                <artifactId>maven-compiler-plugin</artifactId>
32                                <version>2.3.2</version>
33                                <configuration>
34                                        <source>1.6</source>
35                                        <target>1.6</target>
36                                </configuration>
37                        </plugin>
38                        <plugin>
39                                <artifactId>maven-assembly-plugin</artifactId>
40                                <version>2.2-beta-2</version>
41                                <configuration>
42                                        <descriptors>
43                                                <descriptor>src/main/assembly/config.xml</descriptor>
44                                        </descriptors>
45                                </configuration>
46                                <executions>
47                                        <execution>
48                                                <id>make-assembly</id>
49                                                <phase>package</phase>
50                                                <goals>
51                                                        <goal>single</goal>
52                                                </goals>
53                                        </execution>
54                                </executions>
55                        </plugin>
56                </plugins>
57        </build>
58</project>
Note: See TracBrowser for help on using the repository browser.