source: trunk/quest-plugin-guitar/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" 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-plugin-guitar</artifactId>
5  <version>0.0.1-SNAPSHOT</version>
6  <name>quest-plugin-guitar</name>
7        <scm>
8                <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-plugin-guitar</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-plugin-core</artifactId>
19                        <version>0.0.1-SNAPSHOT</version>
20                </dependency>
21        </dependencies>
22        <build>
23                <plugins>
24                        <plugin>
25                                <artifactId>maven-compiler-plugin</artifactId>
26                                <version>2.3.2</version>
27                                <configuration>
28                                        <source>1.6</source>
29                                        <target>1.6</target>
30                                </configuration>
31                        </plugin>
32                </plugins>
33        </build>
34</project>
Note: See TracBrowser for help on using the repository browser.