From 8d86b2984778d6d38f382ef5554ff06bcaae97c8 Mon Sep 17 00:00:00 2001 From: Dominik Stadler Date: Tue, 16 Jul 2024 08:44:53 +0200 Subject: [PATCH] Update bson4jackson, junit, add commons-rng-simple --- build.gradle | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index e043f17..c2d5b53 100644 --- a/build.gradle +++ b/build.gradle @@ -19,7 +19,12 @@ apply plugin: 'de.thetaphi.forbiddenapis' apply plugin: 'jacoco' apply plugin: 'signing' -sourceCompatibility = JavaVersion.VERSION_11 +java { + toolchain { + sourceCompatibility = JavaVersion.VERSION_11 + } +} + group = 'org.dstadler' archivesBaseName = 'commons-audio' @@ -58,14 +63,15 @@ dependencies { implementation fileTree(dir: 'lib', include: ['*.jar']) // binary serialization of data during shutdown - implementation 'de.undercouch:bson4jackson:2.13.1' + implementation 'de.undercouch:bson4jackson:2.15.1' // provide a logging.properties only when running the example, but // don't include it in the jar-file runtimeOnly files('src/runtime/resources') - testImplementation 'org.junit.vintage:junit-vintage-engine:5.10.2' + testImplementation 'org.junit.vintage:junit-vintage-engine:5.10.3' testImplementation 'org.dstadler:commons-test:1.0.0.21' + testImplementation 'org.apache.commons:commons-rng-simple:1.6' } wrapper {