GP-5631: Upgrading some jars

This commit is contained in:
Ryan Kurtz 2025-05-05 07:24:22 -04:00
parent e209136396
commit bbd6b99605
7 changed files with 25 additions and 23 deletions

View file

@ -53,7 +53,7 @@ dependencies {
// use this if you want slf4j log messages sent to log4j
// runtimeOnly "org.apache.logging.log4j:log4j-slf4j-impl:2.17.1"
compileOnly "junit:junit:4.12"
compileOnly "junit:junit:4.13.2"
// These have abstract test classes and stubs needed by this module
testImplementation project(path: ':Docking', configuration: 'testArtifacts')

View file

@ -238,7 +238,7 @@ public class GnuDemanglerNativeProcess {
List<String> errorLines = IOUtils.readLines(err, Charset.defaultCharset());
error = StringUtils.join(errorLines, '\n');
}
catch (IOException e) {
catch (UncheckedIOException e) {
throw new IOException("Unable to read process error stream: ", e);
}