Skip to content

Commit a3cb895

Browse files
committed
Bump pom 0.1.2
1 parent c2be603 commit a3cb895

4 files changed

Lines changed: 12 additions & 17 deletions

File tree

pom.xml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.pathdb</groupId>
66
<artifactId>pathdb</artifactId>
7-
<version>0.1.0-SNAPSHOT</version>
7+
<version>0.1.2-SNAPSHOT</version>
88
<packaging>jar</packaging>
99

1010
<name>PathDB</name>
@@ -36,12 +36,6 @@
3636

3737
<!-- DEPENDENCIES -->
3838
<dependencies>
39-
<!-- Neo4J-->
40-
<dependency>
41-
<groupId>org.neo4j</groupId>
42-
<artifactId>neo4j</artifactId>
43-
<version>3.0.6</version>
44-
</dependency>
4539
<dependency>
4640
<groupId>com.opencsv</groupId>
4741
<artifactId>opencsv</artifactId>

src/main/java/com/pathdb/importing/CSVImport.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ public class CSVImport
2525
{
2626
private final PathIndex index;
2727

28-
public CSVImport( PathIndex index )
28+
public
29+
CSVImport( PathIndex index )
2930
{
3031
this.index = index;
3132
}

src/test/java/com/pathdb/importing/CSVImportTest.java

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,15 @@
77

88
package com.pathdb.importing;
99

10-
import au.com.bytecode.opencsv.CSVWriter;
10+
import static org.junit.Assert.assertEquals;
11+
12+
import com.opencsv.CSVWriter;
1113
import com.pathdb.pathIndex.PathIndex;
1214
import com.pathdb.pathIndex.inMemoryTree.InMemoryIndexFactory;
13-
import org.junit.Test;
14-
1515
import java.io.File;
1616
import java.io.FileWriter;
1717
import java.io.IOException;
18-
19-
import static org.junit.Assert.assertEquals;
18+
import org.junit.Test;
2019

2120
public class CSVImportTest
2221
{

src/test/java/com/pathdb/pathIndex/persisted/TutorialTest.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
/**
2-
* Copyright (C) 2015-2017 - All rights reserved. This file is part of the pathdb project which is
3-
* released under the GPLv3 license. See file LICENSE.txt or go to
4-
* http://www.gnu.org/licenses/gpl.txt for full license details. You may use, distribute and modify
5-
* this code under the terms of the GPLv3 license.
2+
* Copyright (C) 2015-2017 - All rights reserved.
3+
* This file is part of the pathdb project which is released under the GPLv3 license.
4+
* See file LICENSE.txt or go to http://www.gnu.org/licenses/gpl.txt for full license details.
5+
* You may use, distribute and modify this code under the terms of the GPLv3 license.
66
*/
7+
78
package com.pathdb.pathIndex.persisted;
89

910
import static com.jakewharton.byteunits.BinaryByteUnit.GIBIBYTES;

0 commit comments

Comments
 (0)