Skip to content

Commit

Permalink
Bump jackson version in graphql program. Closes #45 (hopefully)
Browse files Browse the repository at this point in the history
  • Loading branch information
retrodaredevil committed Oct 31, 2021
1 parent 0906762 commit bc98a63
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion graphql/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ buildscript {
ext {
// https://github.com/spring-projects/spring-boot/wiki#release-notes
// https://github.com/spring-projects/spring-boot/releases
springBootVersion = '2.5.1'
springBootVersion = '2.5.5'
}
repositories {
mavenCentral()
Expand Down Expand Up @@ -37,6 +37,11 @@ dependencies {

// Although we don't need this dependency, we need to bump the version so that couchdb has the version it needs
api group: 'com.squareup.okhttp3', name: 'okhttp', version: "$okhttpVersion"

// This is necessary to bump the jackson version to whatever SolarThing is using
api "com.fasterxml.jackson.core:jackson-core:$jacksonVersion"
api "com.fasterxml.jackson.core:jackson-annotations:$jacksonVersion"
api "com.fasterxml.jackson.core:jackson-databind:$jacksonVersion"
}
jar {
enabled = true
Expand Down

0 comments on commit bc98a63

Please sign in to comment.