A simple demonstration of extending Neo4j's capabilities by writing custom stored procedures.
The tests may be run with Maven using the following command:
mvn test
Use the following command to build the stored procedures and run them with Docker:
mvn clean package -Dmaven.test.skip=true && \
mkdir target/plugintmp && \
cp target/neo4j-stored-procedures-1.0.0.jar target/plugintmp && \
docker run -td --rm -v $PWD/target/plugintmp:/plugins -p 7474:7474 -p 7687:7687 neo4j:3.3.2
Please feel free to read the detailed tutorial on my blog: "Implementing, Testing and Running Stored Procedures for Neo4j".
2018 Micha Kops / hasCode.com