Skip to content

Commit

Permalink
Upgraded several dependencies that were missed due to Renovate config…
Browse files Browse the repository at this point in the history
…uration changes.

Signed-off-by: Kevin Mellott <[email protected]>
Co-authored-by: Kevin Mellott <[email protected]>
  • Loading branch information
Kevin Mellott and KevinMellott91 committed Jun 25, 2021
1 parent 8fa34da commit 7a2d2ef
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
rev: v4.0.1
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand Down
2 changes: 1 addition & 1 deletion api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ dependencies {
compile 'org.flywaydb:flyway-core:6.5.7'
compile "org.postgresql:postgresql:${postgresqlVersion}"
compile 'com.graphql-java:graphql-java:16.2'
compile 'com.graphql-java-kickstart:graphql-java-servlet:11.1.0'
compile 'com.graphql-java-kickstart:graphql-java-servlet:11.1.1'

testCompile "io.dropwizard:dropwizard-testing:${dropwizardVersion}"
testCompile "org.jdbi:jdbi3-testing:${jdbi3Version}"
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ subprojects {
ext {
assertjVersion = '3.20.2'
dropwizardVersion = '2.0.23'
junit5Version = '5.7.1'
lombokVersion = '1.18.18'
mockitoVersion = '3.8.0'
junit5Version = '5.7.2'
lombokVersion = '1.18.20'
mockitoVersion = '3.10.0'
slf4jVersion = '1.7.30'
postgresqlVersion = '42.2.19'
postgresqlVersion = '42.2.20'
isReleaseVersion = !version.endsWith('SNAPSHOT')
}

Expand Down
10 changes: 5 additions & 5 deletions integrations/spark/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,21 @@ ext {
}

dependencies {
implementation 'org.javassist:javassist:3.27.0-GA'
implementation 'com.github.ok2c.hc5:hc5-async-json:0.2.1'
implementation 'org.apache.httpcomponents.client5:httpclient5:5.0.3'
implementation 'org.javassist:javassist:3.28.0-GA'
implementation 'com.github.ok2c.hc5:hc5-async-json:0.2.2'
implementation 'org.apache.httpcomponents.client5:httpclient5:5.1'
implementation "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
implementation "com.fasterxml.jackson.core:jackson-core:${jacksonVersion}"
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:${jacksonVersion}"
compileOnly "org.apache.spark:spark-core_2.11:${sparkVersion}"
compileOnly "org.apache.spark:spark-sql_2.11:${sparkVersion}"

testImplementation 'com.google.cloud.spark:spark-bigquery-with-dependencies_2.11:0.19.1'
testImplementation 'com.google.cloud.spark:spark-bigquery-with-dependencies_2.11:0.20.0'
testImplementation "net.bytebuddy:byte-buddy-agent:${bytebuddyVersion}"
testImplementation "net.bytebuddy:byte-buddy-dep:${bytebuddyVersion}"
testImplementation "org.apache.spark:spark-core_2.11:${sparkVersion}"
testImplementation "org.apache.spark:spark-sql_2.11:${sparkVersion}"
testImplementation platform('org.junit:junit-bom:5.7.1')
testImplementation platform('org.junit:junit-bom:5.7.2')
testImplementation "org.postgresql:postgresql:${postgresqlVersion}"
testImplementation 'org.hamcrest:hamcrest-library:2.2'
testImplementation('org.xerial:sqlite-jdbc:3.34.0')
Expand Down

0 comments on commit 7a2d2ef

Please sign in to comment.