Skip to content

Commit

Permalink
support neo4j driver for jooby fix #796
Browse files Browse the repository at this point in the history
  • Loading branch information
jknack committed Jul 3, 2017
1 parent 2da4bbe commit ee9cd2f
Show file tree
Hide file tree
Showing 56 changed files with 1,809 additions and 1,412 deletions.
14 changes: 12 additions & 2 deletions modules/coverage-report/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@
<source>${project.parent.basedir}/jooby-lang-js/src/main/java</source>
<source>${project.parent.basedir}/jooby-requery/src/main/java</source>
<source>${project.parent.basedir}/jooby-rocker/src/main/java</source>
<source>${project.parent.basedir}/jooby-neo4j/src/main/java</source>
</sources>
</configuration>
</execution>
Expand Down Expand Up @@ -155,6 +156,7 @@
<source>${project.parent.basedir}/jooby-lang-js/src/test/java</source>
<source>${project.parent.basedir}/jooby-requery/src/test/java</source>
<source>${project.parent.basedir}/jooby-rocker/src/test/java</source>
<source>${project.parent.basedir}/jooby-neo4j/src/test/java</source>
</sources>
</configuration>
</execution>
Expand All @@ -180,8 +182,10 @@
<directory>${project.parent.basedir}/jooby-hbm/src/test/resources</directory>
</resource>
<resource>
<directory>${project.parent.basedir}/jooby-whoops/src/test/resources
</directory>
<directory>${project.parent.basedir}/jooby-whoops/src/test/resources</directory>
</resource>
<resource>
<directory>${project.parent.basedir}/jooby-neo4j/src/test/resources</directory>
</resource>
</resources>
</configuration>
Expand Down Expand Up @@ -400,6 +404,12 @@
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.jooby</groupId>
<artifactId>jooby-neo4j</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.jooby</groupId>
<artifactId>jooby-jooq</artifactId>
Expand Down
387 changes: 387 additions & 0 deletions modules/jooby-neo4j/db/logs/debug.log

Large diffs are not rendered by default.

Binary file added modules/jooby-neo4j/db/neostore
Binary file not shown.
Binary file added modules/jooby-neo4j/db/neostore.counts.db.a
Binary file not shown.
Binary file added modules/jooby-neo4j/db/neostore.id
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Binary file added modules/jooby-neo4j/db/neostore.nodestore.db.id
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added modules/jooby-neo4j/db/neostore.schemastore.db.id
Binary file not shown.
Binary file added modules/jooby-neo4j/db/neostore.transaction.db.0
Binary file not shown.
Empty file.
Binary file not shown.
Empty file.
1 change: 1 addition & 0 deletions modules/jooby-neo4j/foo.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
com.graphaware.runtime.enabled = false
32 changes: 31 additions & 1 deletion modules/jooby-neo4j/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

<parent>
<groupId>org.jooby</groupId>
Expand Down Expand Up @@ -44,25 +44,55 @@
<artifactId>expire</artifactId>
<version>3.1.4.49.4</version>
</dependency>

<dependency>
<groupId>com.graphaware.neo4j</groupId>
<artifactId>runtime</artifactId>
<version>3.1.4.49</version>
</dependency>

<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-graphdb-api</artifactId>
<version>3.1.4</version>
</dependency>

<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j</artifactId>
<version>3.1.4</version>
</dependency>

<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-slf4j</artifactId>
<version>3.1.4</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
</dependency>

<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
</dependency>

<dependency>
<groupId>net.iot-solutions.graphdb</groupId>
<artifactId>jcypher</artifactId>
<version>3.7.0</version>
<exclusions>
<exclusion>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-kernel</artifactId>
</exclusion>
<exclusion>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-io</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- Test Dependencies -->
Expand Down

This file was deleted.

Loading

0 comments on commit ee9cd2f

Please sign in to comment.