-
Notifications
You must be signed in to change notification settings - Fork 18
/
pom.xml
41 lines (37 loc) · 1.03 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.graphstream</groupId>
<artifactId>gs-gephi</artifactId>
<version>0.1-git</version>
<name>gs-gephi</name>
<description>
An interconnection project between Gephi and GraphStream
</description>
<url>http://github.com/graphstream/gs-gephi</url>
<build>
<sourceDirectory>src</sourceDirectory>
<outputDirectory>bin</outputDirectory>
<testSourceDirectory>src-test</testSourceDirectory>
<defaultGoal>compile</defaultGoal>
</build>
<dependencies>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20070829</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.3.1</version>
<optional>false</optional>
</dependency>
<dependency>
<groupId>org.graphstream</groupId>
<artifactId>gs-core</artifactId>
<version>1.2-git</version>
<optional>false</optional>
</dependency>
</dependencies>
</project>