forked from paritytrading/parity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
35 lines (29 loc) · 869 Bytes
/
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
<project xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.paritytrading.parity</groupId>
<artifactId>parity-parent</artifactId>
<version>0.7.1-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>parity-util</artifactId>
<name>Parity Utilities</name>
<dependencies>
<dependency>
<groupId>com.paritytrading.foundation</groupId>
<artifactId>foundation</artifactId>
</dependency>
<dependency>
<groupId>com.typesafe</groupId>
<artifactId>config</artifactId>
</dependency>
<dependency>
<groupId>it.unimi.dsi</groupId>
<artifactId>fastutil</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
</project>