Skip to content

Commit 6094278

Browse files
committed
Upgrade dependencies and switch to implementation
Implementation is recommended to be used as compile is getting removed: https://tomgregory.com/gradle-implementation-vs-compile-dependencies/ Signed-off-by: Jannik Hollenbach <jannik.hollenbach@iteratec.com>
1 parent 4264ac2 commit 6094278

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@ dependencies {
1616
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
1717
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
1818

19-
compile group: 'org.springframework', name: 'spring-web', version: '5.2.12.RELEASE'
19+
implementation group: 'org.springframework', name: 'spring-web', version: '5.3.9'
2020

21-
compile 'com.fasterxml.jackson.core:jackson-core:2.12.0'
22-
compile 'com.fasterxml.jackson.core:jackson-annotations:2.12.0'
23-
compile 'com.fasterxml.jackson.core:jackson-databind:2.12.0'
21+
implementation 'com.fasterxml.jackson.core:jackson-core:2.12.4'
22+
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.12.4'
23+
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.4'
24+
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4'
2425
}
2526

2627
publishing {

0 commit comments

Comments
 (0)