Skip to content

Commit a9a3cfc

Browse files
author
Aapo Kyrola
committed
added pom.xml
1 parent 9d54869 commit a9a3cfc

1 file changed

Lines changed: 34 additions & 0 deletions

File tree

pom.xml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>groupId</groupId>
8+
<artifactId>graphchi-java</artifactId>
9+
<version>0.0.5</version>
10+
11+
<repositories>
12+
<repository>
13+
<id>SonatypeNexusSnapshots</id>
14+
<name>Sonatype Nexus Snapshots</name>
15+
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
16+
<snapshots><enabled>true</enabled></snapshots>
17+
18+
</repository>
19+
</repositories>
20+
21+
<dependencies>
22+
23+
<dependency>
24+
<groupId>junit</groupId>
25+
<artifactId>junit</artifactId>
26+
<version>4.10</version>
27+
<type>jar</type>
28+
<scope>test</scope>
29+
<optional>true</optional>
30+
</dependency>
31+
</dependencies>
32+
33+
34+
</project>

0 commit comments

Comments
 (0)