source: trunk/quest-runner/pom.xml @ 526

Last change on this file since 526 was 526, checked in by sherbold, 12 years ago
  • intial commit of quest-runner and quest-ui-swt. Both projects contain components that were moved from quest-ui-core. The quest-runner is responsible for the execution of the QUEST application. The quest-ui-swt contains an SWT GUI.
  • Property svn:mime-type set to text/plain
File size: 1.4 KB
Line 
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2  <modelVersion>4.0.0</modelVersion>
3  <groupId>de.ugoe.cs.quest</groupId>
4  <artifactId>quest-runner</artifactId>
5  <version>0.0.1-SNAPSHOT</version>
6  <name>quest-runner</name>
7        <scm>
8                <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-runner</url>
9        </scm>
10        <dependencies>
11                <dependency>
12                        <groupId>de.ugoe.cs</groupId>
13                        <artifactId>java-utils</artifactId>
14                        <version>0.0.1-SNAPSHOT</version>
15                </dependency>
16                <dependency>
17                        <groupId>de.ugoe.cs.quest</groupId>
18                        <artifactId>quest-ui-core</artifactId>
19                        <version>0.0.1-SNAPSHOT</version>
20                </dependency>
21                <dependency>
22                        <groupId>de.ugoe.cs.quest</groupId>
23                        <artifactId>quest-ui-swt</artifactId>
24                        <version>0.0.1-SNAPSHOT</version>
25                </dependency>
26                <dependency>
27                        <groupId>net.sf.jopt-simple</groupId>
28                        <artifactId>jopt-simple</artifactId>
29                        <version>4.3</version>
30                </dependency>
31        </dependencies>
32        <build>
33                <plugins>
34                        <plugin>
35                                <artifactId>maven-compiler-plugin</artifactId>
36                                <version>2.3.2</version>
37                                <configuration>
38                                        <source>1.6</source>
39                                        <target>1.6</target>
40                                </configuration>
41                        </plugin>
42                </plugins>
43        </build>
44</project>
Note: See TracBrowser for help on using the repository browser.