From cff18b088ebf393b14e3ddcd48beddc79f3c69d7 Mon Sep 17 00:00:00 2001 From: Yannik Bretschneider Date: Tue, 3 Aug 2021 20:10:56 +0200 Subject: [PATCH] build: updated libraries to newest versions --- build.gradle | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index c747d5a..a967488 100644 --- a/build.gradle +++ b/build.gradle @@ -18,9 +18,9 @@ test { } dependencies { - implementation "com.fasterxml.jackson.core:jackson-core:2.12.3" - implementation "com.fasterxml.jackson.core:jackson-annotations:2.12.3" - implementation "com.fasterxml.jackson.core:jackson-databind:2.12.3" + implementation 'com.fasterxml.jackson.core:jackson-core:2.12.4' + implementation 'com.fasterxml.jackson.core:jackson-annotations:2.12.4' + implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.4' implementation "org.hibernate.validator:hibernate-validator:7.0.1.Final" implementation "org.glassfish:jakarta.el:4.0.1" @@ -28,10 +28,10 @@ dependencies { implementation "org.tinylog:tinylog-api:2.4.0-M1" implementation "org.tinylog:tinylog-impl:2.4.0-M1" - testImplementation "net.jqwik:jqwik:1.5.1" + testImplementation 'net.jqwik:jqwik:1.5.3' testImplementation "org.junit.jupiter:junit-jupiter-api:5.8.0-M1" - testImplementation "org.mockito:mockito-core:3.+" - testImplementation "org.assertj:assertj-core:3.19.0" + testImplementation 'org.mockito:mockito-core:3.11.2' + testImplementation 'org.assertj:assertj-core:3.20.2' testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.8.0-M1" }