Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated packages passing dependecy-check #2804

Merged
merged 1 commit into from
Apr 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ subprojects {

ext {
// NB: due to version.json generation by parsing this file, the next line must not have any if/then/else logic
neo4jVersion = "4.4.1"
neo4jVersion = "4.4.5"
// instead we apply the override logic here
neo4jVersionEffective = project.hasProperty("neo4jVersionOverride") ? project.getProperty("neo4jVersionOverride") : neo4jVersion
testContainersVersion = '1.15.1'
Expand Down
22 changes: 15 additions & 7 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ dependencies {
apt group: 'org.neo4j', name: 'neo4j', version: neo4jVersionEffective
compile group: 'commons-codec', name: 'commons-codec', version: '1.14'
compile group: 'com.jayway.jsonpath', name: 'json-path', version: '2.4.0'
compile group: 'net.minidev', name: 'json-smart', version: '2.4.2'
compile group: 'net.minidev', name: 'json-smart', version: '2.4.8'
compile group: 'org.hdrhistogram', name: 'HdrHistogram', version: '2.1.9'

antlr "org.antlr:antlr4:4.7.2", {
Expand Down Expand Up @@ -98,7 +98,6 @@ dependencies {
compileOnly group: 'com.amazonaws', name: 'aws-java-sdk-comprehend', version: '1.11.683'
testImplementation group: 'com.amazonaws', name: 'aws-java-sdk-comprehend', version: '1.11.683'

testCompile group: 'org.codehaus.jackson', name: 'jackson-mapper-asl', version: '1.9.7'
compile group: 'com.opencsv', name: 'opencsv', version: '4.6'
compile group: 'commons-beanutils', name: 'commons-beanutils', version: '1.9.4'
compileOnly group: 'org.ow2.asm', name: 'asm', version: '5.0.2'
Expand All @@ -119,7 +118,7 @@ dependencies {
testCompile group: 'org.xmlunit', name: 'xmlunit-core', version: '2.2.1'
testCompile group: 'com.github.adejanovski', name: 'cassandra-jdbc-wrapper', version: '3.1.0'

testCompile group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-csv', version: '2.9.7'
testCompile group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-csv', version: '2.13.2'
testCompile group: 'org.skyscreamer', name: 'jsonassert', version: '1.5.0'
testCompile group: 'org.assertj', name: 'assertj-core', version: '3.13.2'

Expand All @@ -132,10 +131,19 @@ dependencies {

compile group: 'xerces', name: 'xercesImpl', version: '2.12.1'

compile group: 'org.apache.arrow', name: 'arrow-vector', version: '6.0.0'
compile group: 'org.apache.arrow', name: 'arrow-memory-netty', version: '6.0.0'
testCompile group: 'org.apache.arrow', name: 'arrow-vector', version: '6.0.0'
testCompile group: 'org.apache.arrow', name: 'arrow-memory-netty', version: '6.0.0'
compile group: 'org.apache.arrow', name: 'arrow-vector', version: '7.0.0', {
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-core'
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-annotations'
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-databind'
exclude group: 'io.netty', module: 'netty-common'
}
compile group: 'org.apache.arrow', name: 'arrow-memory-netty', version: '7.0.0', {
exclude group: 'com.google.guava', module: 'guava'
exclude group: 'io.netty', module: 'netty-common'
exclude group: 'io.netty', module: 'netty-buffer'
}
testCompile group: 'org.apache.arrow', name: 'arrow-vector', version: '7.0.0'
testCompile group: 'org.apache.arrow', name: 'arrow-memory-netty', version: '7.0.0'

configurations.all {
exclude group: 'org.slf4j', module: 'slf4j-nop'
Expand Down
6 changes: 3 additions & 3 deletions full/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,10 @@ dependencies {

compileOnly group: 'org.neo4j', name: 'neo4j', version: neo4jVersionEffective

compileOnly group: 'com.fasterxml.jackson.module', name: 'jackson-module-kotlin', version: '2.13.1'
compileOnly group: 'com.fasterxml.jackson.module', name: 'jackson-module-kotlin', version: '2.13.2'
compileOnly 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.0'

testCompile group: 'com.fasterxml.jackson.module', name: 'jackson-module-kotlin', version: '2.13.1'
testCompile group: 'com.fasterxml.jackson.module', name: 'jackson-module-kotlin', version: '2.13.2'
testCompile 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.0'

testCompile 'org.mock-server:mockserver-netty:5.6.0'
Expand All @@ -135,7 +135,7 @@ dependencies {
testCompile group: 'com.github.adejanovski', name: 'cassandra-jdbc-wrapper', version: '3.1.0'


testCompile group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-csv', version: '2.9.7'
testCompile group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-csv', version: '2.13.2'
testCompile group: 'org.skyscreamer', name: 'jsonassert', version: '1.5.0'
testCompile group: 'org.assertj', name: 'assertj-core', version: '3.13.2'

Expand Down