@@ -5,11 +5,13 @@ plugins {
55apply from : " ${ rootDir} /gradle/publish.gradle"
66
77dependencies {
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
0 commit comments