Skip to content
This repository was archived by the owner on May 25, 2021. It is now read-only.

Commit 59ed3c4

Browse files
authored
Override Jackson and logback versions from Spring Boot BOM (#43)
1 parent 60ffdce commit 59ed3c4

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

01-Authorization/build.gradle

+9-3
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@ buildscript {
55
}
66

77
plugins {
8-
id 'org.springframework.boot' version '1.5.21.RELEASE'
8+
id 'org.springframework.boot' version '1.5.22.RELEASE'
99
}
1010

11-
ext['jackson.version'] = '2.9.9'
12-
ext['logback.version'] = '1.2.3'
11+
apply plugin: 'io.spring.dependency-management'
1312

1413
group = 'com.auth0'
1514
version = '0.0.1-SNAPSHOT'
@@ -27,3 +26,10 @@ dependencies {
2726
implementation 'org.springframework.boot:spring-boot-starter-web'
2827
implementation 'org.json:json:20180813'
2928
}
29+
30+
dependencyManagement {
31+
imports {
32+
mavenBom 'com.fasterxml.jackson:jackson-bom:2.9.9.20190807'
33+
mavenBom 'ch.qos.logback:logback-classic:1.2.3'
34+
}
35+
}

0 commit comments

Comments
 (0)