Skip to content

Commit

Permalink
build(deps): downgrade jackson from 2.12.0 to 2.11.3
Browse files Browse the repository at this point in the history
As Vert.x 4 seems to be compiled against jackson 2.11, the dependency
must be downgraded, because when using jackson 2.12 some methods cannot
be found and produce errors.
  • Loading branch information
s4heid committed Jan 14, 2021
1 parent 696b6b6 commit 06fd9a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dependencies.gradle
Expand Up @@ -6,7 +6,7 @@ repositories {

dependencies {
def vertx_version = '4.0.0'
def jackson_version = '2.12.0'
def jackson_version = '2.11.3'
def jupiter_version = '5.7.0'
def junit_platform_version = '1.7.0'
def errorprone_version = '2.3.3'
Expand Down Expand Up @@ -41,7 +41,7 @@ dependencies {
implementation(group: 'org.apache.olingo', name: 'odata-server-core', version: olingo_version) {
exclude group: 'io.netty'
}
implementation group: 'org.apache.olingo', name: 'odata-server-core-ext', version: olingo_version
implementation group: 'org.apache.olingo', name: 'odata-server-core-ext', version: olingo_version

implementation group: 'org.slf4j', name: 'slf4j-api', version: slf4j_version
implementation group: 'ch.qos.logback', name: 'logback-classic', version: logback_version
Expand Down

0 comments on commit 06fd9a4

Please sign in to comment.