source: trunk/quest-core-events/pom.xml @ 486

Last change on this file since 486 was 486, checked in by sherbold, 12 years ago
  • updated quest-core-events POM
  • Property svn:mime-type set to text/plain
File size: 1.5 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-core-events</artifactId>
6        <version>0.0.1-SNAPSHOT</version>
7        <name>quest-core-events</name>
8        <scm>
9                <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-events</url>
10        </scm>
11        <repositories>
12                <repository>
13                        <id>mbari</id>
14                        <url>http://mbari-maven-repository.googlecode.com/svn/repository</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                        <scope>main</scope>
23                </dependency>
24                <dependency>
25                        <groupId>net.sf.jung</groupId>
26                        <artifactId>jung-visualization</artifactId>
27                        <version>2.0.1</version>
28                </dependency>
29                <dependency>
30                        <groupId>net.sf.jung</groupId>
31                        <artifactId>jung-graph-impl</artifactId>
32                        <version>2.0.1</version>
33                </dependency>
34                <dependency>
35                        <groupId>jama</groupId>
36                        <artifactId>jama</artifactId>
37                        <version>1.0.2</version>
38                </dependency>
39        </dependencies>
40        <build>
41                <plugins>
42                        <plugin>
43                                <artifactId>maven-compiler-plugin</artifactId>
44                                <version>2.3.2</version>
45                                <configuration>
46                                        <source>1.6</source>
47                                        <target>1.6</target>
48                                </configuration>
49                        </plugin>
50                </plugins>
51        </build>
52</project>
Note: See TracBrowser for help on using the repository browser.