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

Last change on this file since 583 was 573, checked in by pharms, 12 years ago
  • integrated event bench parsing implementation for JFC with parser for task tree stuff, i.e. now not only Strings as targets, but concrete UI objects are instantiated.
  • Property svn:mime-type set to text/plain
File size: 1.3 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                </plugins>
39        </build>
40</project>
Note: See TracBrowser for help on using the repository browser.