source: trunk/quest-plugin-guitar/pom.xml @ 671

Last change on this file since 671 was 671, checked in by sherbold, 12 years ago
  • moved CommandHelpers? from quest-ui-core to quest-misc
  • removed dependency on quest-ui-core from all quest-plugin projects
  • Property svn:mime-type set to text/plain
File size: 1.9 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-guitar</artifactId>
6        <version>0.0.1-SNAPSHOT</version>
7        <name>quest-plugin-guitar</name>
8        <scm>
9                <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-plugin-guitar</url>
10        </scm>
11        <repositories>
12                <repository>
13                        <id>quest-repo</id>
14                        <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/thirdparty</url>
15                </repository>
16        </repositories>
17        <dependencies>
18                <dependency>
19                        <groupId>de.ugoe.cs</groupId>
20                        <artifactId>java-utils</artifactId>
21                        <version>0.0.1-SNAPSHOT</version>
22                </dependency>
23                <dependency>
24                        <groupId>de.ugoe.cs.quest</groupId>
25                        <artifactId>quest-plugin-core</artifactId>
26                        <version>0.0.1-SNAPSHOT</version>
27                </dependency>
28                <dependency>
29                        <groupId>de.ugoe.cs.quest</groupId>
30                        <artifactId>quest-core-events</artifactId>
31                        <version>0.0.1-SNAPSHOT</version>
32                </dependency>
33                <dependency>
34                        <groupId>de.ugoe.cs.quest</groupId>
35                        <artifactId>quest-core-usageprofiles</artifactId>
36                        <version>0.0.1-SNAPSHOT</version>
37                </dependency>
38                <dependency>
39                        <groupId>de.ugoe.cs.quest</groupId>
40                        <artifactId>quest-misc</artifactId>
41                        <version>0.0.1-SNAPSHOT</version>
42                </dependency>
43                <dependency>
44                        <groupId>edu.umd.cs</groupId>
45                        <artifactId>guitar-model-core</artifactId>
46                        <version>1.0</version>
47                </dependency>
48        </dependencies>
49        <build>
50                <plugins>
51                        <plugin>
52                                <artifactId>maven-compiler-plugin</artifactId>
53                                <version>2.3.2</version>
54                                <configuration>
55                                        <source>1.6</source>
56                                        <target>1.6</target>
57                                </configuration>
58                        </plugin>
59                </plugins>
60        </build>
61</project>
Note: See TracBrowser for help on using the repository browser.