File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed
Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -12,17 +12,20 @@ sourceCompatibility = JavaVersion.VERSION_1_8
1212targetCompatibility = JavaVersion . VERSION_1_8
1313
1414dependencies {
15- // implementation "org.slf4j:slf4j-api:${slf4jVersion}"
15+
1616 implementation " org.apache.httpcomponents.client5:httpclient5:${ httpClientVersion} "
1717 implementation " com.fasterxml.jackson.core:jackson-databind:${ jacksonVersion} "
1818 implementation " com.fasterxml.jackson.core:jackson-core:${ jacksonVersion} "
1919 implementation " com.fasterxml.jackson.core:jackson-annotations:${ jacksonVersion} "
2020
2121 // Tests
22- testImplementation(platform(" org.junit:junit-bom:${ junitVersion} " ))
23- testImplementation(" org.junit.jupiter:junit-jupiter:${ junitVersion} " )
22+ testRuntimeOnly ' org.junit.platform:junit-platform-launcher'
23+
24+ testImplementation platform(" org.junit:junit-bom:${ junitVersion} " )
25+ testImplementation " org.junit.jupiter:junit-jupiter:${ junitVersion} "
26+
2427 // https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j2-impl
25- testImplementation group : ' org.apache.logging.log4j' , name : ' log4j-slf4j2-impl' , version : ' 2.22.1 '
28+ testImplementation group : ' org.apache.logging.log4j' , name : ' log4j-slf4j2-impl' , version : " ${ slf4j2Version } "
2629}
2730
2831java {
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ group=com.opencagedata
22artifactId =jopencage
33version =3.0.0-SNAPSHOT
44
5- # slf4jVersion=1.7.32
65httpClientVersion =5.5
76jacksonVersion =2.19.0
87
9- junitVersion =5.11.4
8+ junitVersion =5.12.2
9+ slf4j2Version =2.22.1
You can’t perform that action at this time.
0 commit comments