Skip to content
This repository has been archived by the owner on Dec 1, 2023. It is now read-only.

Commit

Permalink
updated neo4j to v2.2.0 and mentioned in the README to check the neo4…
Browse files Browse the repository at this point in the history
…j.version before building
  • Loading branch information
Mirko Nasato committed Mar 29, 2015
1 parent ecfd3dd commit c5d703d
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .gitignore
@@ -1,4 +1,6 @@
target
.settings
.classpath
.idea
.project
.settings
*.iml
17 changes: 14 additions & 3 deletions README.md
@@ -1,13 +1,24 @@
Graphipedia
===========

A tool for creating a graph database of Wikipedia pages and the links between them.
A tool for creating a [Neo4j](http://neo4j.org) graph database of Wikipedia pages and the links between them.

Building
--------

This is a Java project built with [Maven](http://maven.apache.org).

Check the `neo4j.version` property in the top-level `pom.xml` file and make sure it matches the Neo4j version
you intend to use to open the database. Then build with

mvn package

This will generate a package including all dependencies in `graphipedia-dataimport/target/graphipedia-dataimport.jar`.

Importing Data
--------------

The graphipedia-dataimport module allows to create a [Neo4j](http://neo4j.org)
database from a Wikipedia database dump.
The graphipedia-dataimport module allows to create a Neo4j database from a Wikipedia database dump.

See [Wikipedia:Database_download](http://en.wikipedia.org/wiki/Wikipedia:Database_download)
for instructions on getting a Wikipedia database dump.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -10,7 +10,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<neo4j.version>2.1.7</neo4j.version>
<neo4j.version>2.2.0</neo4j.version>
</properties>

<modules>
Expand Down

0 comments on commit c5d703d

Please sign in to comment.