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

Commit bf7dfeb

Browse files
committed
Use 3.5 version of evaluator for now
1 parent f56e81b commit bf7dfeb

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ ext {
6969

7070
argparse4jVersion = '0.7.0'
7171
junitVersion = '4.12'
72-
evaluatorVersion = '4.0.0'
72+
evaluatorVersion = '3.5.14'
7373
neo4jJavaDriverVersion = '4.0.0'
7474
findbugsVersion = '3.0.0'
7575
jansiVersion = '1.13'

cypher-shell/build.gradle

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,21 +38,24 @@ distributions {
3838
dependencies {
3939
compile "net.sourceforge.argparse4j:argparse4j:$argparse4jVersion"
4040
compile("org.neo4j:neo4j-cypher-expression-evaluator:$evaluatorVersion") {
41+
exclude(group: 'org.apache.lucene')
4142
exclude(group: 'org.neo4j', module: 'neo4j-index')
42-
exclude(group: 'org.neo4j', module: 'neo4j-fulltext-index')
43+
exclude(group: 'org.neo4j', module: 'neo4j-lucene-upgrade')
4344
exclude(group: 'org.neo4j', module: 'neo4j-ssl')
4445
exclude(group: 'org.neo4j', module: 'neo4j-graph-algo')
45-
exclude(group: 'org.neo4j', module: 'neo4j-id-generator')
4646
exclude(group: 'org.neo4j', module: 'neo4j-io')
47-
exclude(group: 'org.neo4j', module: 'neo4j-label-index')
48-
exclude(group: 'org.neo4j', module: 'neo4j-storage-engine-api')
47+
exclude(group: 'org.neo4j', module: 'neo4j-csv')
48+
exclude(group: 'org.neo4j', module: 'neo4j-configuration')
49+
exclude(group: 'org.neo4j', module: 'neo4j-collections')
50+
exclude(group: 'org.neo4j', module: 'neo4j-diagnostics')
51+
exclude(group: 'org.neo4j', module: 'neo4j-resource')
52+
exclude(group: 'org.neo4j', module: 'neo4j-annotation-processors')
4953
exclude(group: 'org.neo4j', module: 'neo4j-spatial-index')
50-
exclude(group: 'org.neo4j', module: 'neo4j-wal')
5154
exclude(group: 'org.neo4j', module: 'neo4j-native')
5255
exclude(group: 'org.neo4j', module: 'neo4j-logging')
5356
exclude(group: 'org.neo4j', module: 'neo4j-procedure-api')
57+
exclude(group: 'org.neo4j', module: 'neo4j-kernel-api')
5458
exclude(group: 'org.eclipse.collections')
55-
exclude(group: 'org.jctools')
5659
}
5760
compile "org.neo4j.driver:neo4j-java-driver:$neo4jJavaDriverVersion"
5861
compileOnly "com.google.code.findbugs:annotations:$findbugsVersion"

0 commit comments

Comments
 (0)