Skip to content

Commit

Permalink
Added scripts for building and running.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmontag committed Jan 12, 2012
1 parent 9fbba12 commit ea7fd7b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions build.sh
@@ -0,0 +1,3 @@
#!/bin/sh

mvn clean package dependency:copy-dependencies
3 changes: 3 additions & 0 deletions run.sh
@@ -0,0 +1,3 @@
#!/bin/sh

java -server -Xmx2048m -cp target/neo4j-import-1.0.jar:target/dependency/\* org.neo4j.dataimport.CsvImporter $*
1 change: 0 additions & 1 deletion src/main/java/org/neo4j/dataimport/CsvImporter.java
Expand Up @@ -191,7 +191,6 @@ private List<PropertyKey> parsePropertyKeys( List<String> properties )
{
result.add( new PropertyKey( parseName(property), parseType(property), parseIndex(property) ) );
}
System.out.println(result);
return result;
}

Expand Down

0 comments on commit ea7fd7b

Please sign in to comment.