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

Last change on this file since 516 was 516, checked in by sherbold, 12 years ago
  • initial commit of quest-plugin-guitar, quest-plugin-jfc, quest-plugin-mfc, and quest-plugin-php. All plug-ins only provide their identifier class, the functionality is still located in quest-ui-core.
  • Property svn:mime-type set to text/plain
File size: 1.1 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        </dependencies>
23        <build>
24                <plugins>
25                        <plugin>
26                                <artifactId>maven-compiler-plugin</artifactId>
27                                <version>2.3.2</version>
28                                <configuration>
29                                        <source>1.6</source>
30                                        <target>1.6</target>
31                                </configuration>
32                        </plugin>
33                </plugins>
34        </build>
35</project>
Note: See TracBrowser for help on using the repository browser.