@@ -8,8 +8,9 @@ group = 'bitxon.dropwizard'
8
8
version = ' 1.0-SNAPSHOT'
9
9
10
10
java {
11
- sourceCompatibility = JavaVersion . VERSION_17
12
- targetCompatibility = JavaVersion . VERSION_17
11
+ toolchain {
12
+ languageVersion = JavaLanguageVersion . of(17 )
13
+ }
13
14
}
14
15
15
16
repositories {
@@ -18,7 +19,7 @@ repositories {
18
19
19
20
dependencies {
20
21
implementation project(" :common-api" )
21
- implementation enforcedPlatform(" io.dropwizard:dropwizard-bom:4.0.0 " )
22
+ implementation enforcedPlatform(" io.dropwizard:dropwizard-bom:4.0.12 " )
22
23
implementation ' io.dropwizard:dropwizard-core'
23
24
implementation ' io.dropwizard:dropwizard-client'
24
25
implementation ' io.dropwizard:dropwizard-validation'
@@ -30,17 +31,17 @@ dependencies {
30
31
31
32
compileOnly ' org.projectlombok:lombok:1.18.24'
32
33
33
- runtimeOnly ' org.postgresql:postgresql:42.4.0 '
34
+ runtimeOnly ' org.postgresql:postgresql:42.7.5 '
34
35
35
36
testImplementation ' io.dropwizard:dropwizard-testing'
36
37
testImplementation project(" :common-wiremock" )
37
38
testImplementation ' org.wiremock:wiremock:3.2.0'
38
39
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'
44
45
testImplementation ' org.junit.jupiter:junit-jupiter-api'
45
46
testImplementation ' org.junit.jupiter:junit-jupiter-params'
46
47
testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine'
0 commit comments