Skip to content

Commit 86eea00

Browse files
committed
Update dependencies, using spring-boot 2.6.12 platform
1 parent 5d7976e commit 86eea00

File tree

3 files changed

+15
-16
lines changed

3 files changed

+15
-16
lines changed

gradle.properties

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
group=eu.xenit.contentcloud
22

3+
springBootVersion=2.6.12
34
lombokVersion=1.18.22
4-
slf4jVersion =1.7.30
5-
jacksonVersion =2.12.1
6-
7-
testContainersVersion=1.15.2
8-
assertjVersion =3.19.0
9-
junitVersion=5.7.1
10-
5+
testContainersVersion=1.17.4

opa-async-java-client/build.gradle

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@ plugins {
55
apply from: "${rootDir}/gradle/publish.gradle"
66

77
dependencies {
8-
api "org.slf4j:slf4j-api:${slf4jVersion}"
8+
api platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}")
9+
10+
api "org.slf4j:slf4j-api"
911
api project(":rego-java")
1012

11-
api "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
12-
api "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:${jacksonVersion}"
13+
api "com.fasterxml.jackson.core:jackson-databind"
14+
api "com.fasterxml.jackson.datatype:jackson-datatype-jsr310"
1315

1416
compileOnly "org.projectlombok:lombok:${lombokVersion}"
1517
annotationProcessor "org.projectlombok:lombok:${lombokVersion}"
@@ -18,12 +20,12 @@ dependencies {
1820
testAnnotationProcessor "org.projectlombok:lombok:${lombokVersion}"
1921

2022
testImplementation "org.testcontainers:junit-jupiter:${testContainersVersion}"
21-
testImplementation "org.assertj:assertj-core:${assertjVersion}"
22-
testImplementation "org.junit.jupiter:junit-jupiter-api:${junitVersion}"
23+
testImplementation "org.assertj:assertj-core"
24+
testImplementation "org.junit.jupiter:junit-jupiter-api"
2325

24-
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junitVersion}"
25-
testRuntimeOnly "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
26-
testRuntimeOnly "org.slf4j:slf4j-simple:${slf4jVersion}"
26+
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine"
27+
testRuntimeOnly "com.fasterxml.jackson.core:jackson-databind"
28+
testRuntimeOnly "org.slf4j:slf4j-simple"
2729

2830
}
2931

rego-java/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@ plugins {
55
apply from: "${rootDir}/gradle/publish.gradle"
66

77
dependencies {
8+
api platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}")
9+
810
compileOnly "org.projectlombok:lombok:${lombokVersion}"
911
annotationProcessor "org.projectlombok:lombok:${lombokVersion}"
1012

11-
implementation "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
13+
implementation "com.fasterxml.jackson.core:jackson-databind"
1214
}

0 commit comments

Comments
 (0)