Created
September 9, 2012 22:29
-
-
Save michail-nikolaev/3687699 to your computer and use it in GitHub Desktop.
Gradle - Neo4j - Fat Jar (to avoid problem with pom.xml unzipping)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
compile('com.tinkerpop.blueprints:blueprints-neo4jbatch-graph:2.1.0') { | |
exclude group: "org.neo4j", module: "neo4j" | |
} | |
compile('com.tinkerpop.blueprints:blueprints-neo4j-graph:2.0.0') { | |
exclude group: "org.neo4j", module: "neo4j" | |
} | |
compile 'com.tinkerpop.gremlin:gremlin-java:2.1.0' | |
compile 'org.neo4j:neo4j-backup:1.8.M02' | |
compile 'org.neo4j:neo4j-com:1.8.M02' | |
compile 'org.neo4j:neo4j-cypher:1.8.M02' | |
compile 'org.neo4j:neo4j-graph-algo:1.8.M02' | |
compile 'org.neo4j:neo4j-graph-matching:1.8.M02' | |
compile 'org.neo4j:neo4j-ha:1.8.M02' | |
compile 'org.neo4j:neo4j-jmx:1.8.M02' | |
compile 'org.neo4j:neo4j-kernel:1.8.M02' | |
compile 'org.neo4j:neo4j-lucene-index:1.8.M02' | |
compile 'org.neo4j:neo4j-management:1.8.M02' | |
compile 'org.neo4j:neo4j-udc:1.8.M02' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment