diff --git a/build.gradle b/build.gradle index eb6c21b2..45046037 100644 --- a/build.gradle +++ b/build.gradle @@ -52,8 +52,8 @@ dependencies { api 'com.squareup.okhttp3:okhttp:5.3.2' // JUnit 6 - testImplementation(platform('org.junit:junit-bom:6.0.2')) - testImplementation('org.junit.jupiter:junit-jupiter:6.0.2') + testImplementation(platform('org.junit:junit-bom:6.0.3')) + testImplementation('org.junit.jupiter:junit-jupiter:6.0.3') // Test libs testImplementation 'org.mockito:mockito-core:4.11.0' @@ -62,9 +62,9 @@ dependencies { testImplementation 'com.squareup.okhttp3:okhttp:5.3.2' testImplementation 'com.squareup.okhttp3:mockwebserver:5.3.2' - testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.21.0' + testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.21.1' - compileOnly group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.21.0' + compileOnly group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.21.1' // Lombok compileOnly 'org.projectlombok:lombok:1.18.42' @@ -73,7 +73,7 @@ dependencies { testAnnotationProcessor 'org.projectlombok:lombok:1.18.42' // JWT - implementation 'com.auth0:java-jwt:4.5.0' + implementation 'com.auth0:java-jwt:4.5.1' } tasks.register('buildJar', Jar) {