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

Commit

Permalink
Merge pull request #194 from pontusmelke/1.1-remove-some-transitive-d…
Browse files Browse the repository at this point in the history
…ependecies

1.1 remove some transitive dependecies
  • Loading branch information
pontusmelke authored Jan 15, 2020
2 parents 6a2dd3f + ece4246 commit dfe4543
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ ext {

argparse4jVersion = '0.7.0'
junitVersion = '4.12'
evaluatorVersion = '3.5.4'
evaluatorVersion = '3.5.14'
neo4jJavaDriverVersion = '1.7.4'
findbugsVersion = '3.0.0'
jansiVersion = '1.13'
Expand Down
21 changes: 20 additions & 1 deletion cypher-shell/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,26 @@ distributions {

dependencies {
compile "net.sourceforge.argparse4j:argparse4j:$argparse4jVersion"
compile "org.neo4j:neo4j-cypher-expression-evaluator:$evaluatorVersion"
compile("org.neo4j:neo4j-cypher-expression-evaluator:$evaluatorVersion") {
exclude(group: 'org.apache.lucene')
exclude(group: 'org.neo4j', module: 'neo4j-index')
exclude(group: 'org.neo4j', module: 'neo4j-lucene-upgrade')
exclude(group: 'org.neo4j', module: 'neo4j-ssl')
exclude(group: 'org.neo4j', module: 'neo4j-graph-algo')
exclude(group: 'org.neo4j', module: 'neo4j-io')
exclude(group: 'org.neo4j', module: 'neo4j-csv')
exclude(group: 'org.neo4j', module: 'neo4j-configuration')
exclude(group: 'org.neo4j', module: 'neo4j-collections')
exclude(group: 'org.neo4j', module: 'neo4j-diagnostics')
exclude(group: 'org.neo4j', module: 'neo4j-resource')
exclude(group: 'org.neo4j', module: 'neo4j-annotation-processors')
exclude(group: 'org.neo4j', module: 'neo4j-spatial-index')
exclude(group: 'org.neo4j', module: 'neo4j-native')
exclude(group: 'org.neo4j', module: 'neo4j-logging')
exclude(group: 'org.neo4j', module: 'neo4j-procedure-api')
exclude(group: 'org.neo4j', module: 'neo4j-kernel-api')
exclude(group: 'org.eclipse.collections')
}
compile "org.neo4j.driver:neo4j-java-driver:$neo4jJavaDriverVersion"
compileOnly "com.google.code.findbugs:annotations:$findbugsVersion"
compile "org.fusesource.jansi:jansi:$jansiVersion"
Expand Down

0 comments on commit dfe4543

Please sign in to comment.