@@ -8,8 +8,9 @@ group = 'bitxon.dropwizard'
88version = ' 1.0-SNAPSHOT'
99
1010java {
11- sourceCompatibility = JavaVersion . VERSION_17
12- targetCompatibility = JavaVersion . VERSION_17
11+ toolchain {
12+ languageVersion = JavaLanguageVersion . of(17 )
13+ }
1314}
1415
1516repositories {
@@ -18,7 +19,7 @@ repositories {
1819
1920dependencies {
2021 implementation project(" :common-api" )
21- implementation enforcedPlatform(" io.dropwizard:dropwizard-bom:4.0.0 " )
22+ implementation enforcedPlatform(" io.dropwizard:dropwizard-bom:4.0.12 " )
2223 implementation ' io.dropwizard:dropwizard-core'
2324 implementation ' io.dropwizard:dropwizard-client'
2425 implementation ' io.dropwizard:dropwizard-validation'
@@ -30,17 +31,17 @@ dependencies {
3031
3132 compileOnly ' org.projectlombok:lombok:1.18.24'
3233
33- runtimeOnly ' org.postgresql:postgresql:42.4.0 '
34+ runtimeOnly ' org.postgresql:postgresql:42.7.5 '
3435
3536 testImplementation ' io.dropwizard:dropwizard-testing'
3637 testImplementation project(" :common-wiremock" )
3738 testImplementation ' org.wiremock:wiremock:3.2.0'
3839 testImplementation ' com.google.code.findbugs:jsr305:3.0.2' // TODO research - dep should be transitive from wiremock
39- testImplementation ' org.testcontainers:testcontainers:1.17.6 '
40- testImplementation ' org.testcontainers:junit-jupiter:1.17.6 '
41- testImplementation ' org.testcontainers:postgresql:1.17.6 '
42- testImplementation ' org.assertj:assertj-core:3.24.2 '
43- testImplementation ' io.rest-assured:rest-assured:5.3 .0'
40+ testImplementation ' org.testcontainers:testcontainers:1.20.4 '
41+ testImplementation ' org.testcontainers:junit-jupiter:1.20.4 '
42+ testImplementation ' org.testcontainers:postgresql:1.20.4 '
43+ testImplementation ' org.assertj:assertj-core:3.27.3 '
44+ testImplementation ' io.rest-assured:rest-assured:5.5 .0'
4445 testImplementation ' org.junit.jupiter:junit-jupiter-api'
4546 testImplementation ' org.junit.jupiter:junit-jupiter-params'
4647 testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine'
0 commit comments