From 75f01f4fd0f174b39d6578f44ac88bd32365524f Mon Sep 17 00:00:00 2001 From: Jan Eglinger Date: Tue, 23 Feb 2021 11:29:12 +0100 Subject: [PATCH 1/2] Bump parent to pom-scijava 30.0.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index dbc65be..f31d99e 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.scijava pom-scijava - 28.0.0 + 30.0.0 From 01bddaeb447c2582c75ee19c6b9c38824e44b493 Mon Sep 17 00:00:00 2001 From: Jan Eglinger Date: Tue, 23 Feb 2021 11:31:07 +0100 Subject: [PATCH 2/2] Update populate-app test This commit updates dependency versions in the populate-app test to avoid a Dependabot alert about security vulnerabilities, related to an obsolete junit version being used in this test. --- src/it/populate-app/pom.xml | 4 ++-- src/it/populate-app/verify.bsh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/it/populate-app/pom.xml b/src/it/populate-app/pom.xml index f225ba0..96a9ce3 100644 --- a/src/it/populate-app/pom.xml +++ b/src/it/populate-app/pom.xml @@ -40,13 +40,13 @@ junit junit - 4.8.1 + 4.13.2 test net.imagej ij - 1.48s + 1.53g diff --git a/src/it/populate-app/verify.bsh b/src/it/populate-app/verify.bsh index 50b7082..91c379a 100644 --- a/src/it/populate-app/verify.bsh +++ b/src/it/populate-app/verify.bsh @@ -31,9 +31,9 @@ source(new File(basedir, "../../../src/it/lib.bsh").getPath()); assertTrue("Should exist: " + plugin, plugin.exists()); // install-artifact must not copy test scope dependencies -junit = new File(ijDir, "../Other.app/jars/junit-4.8.1.jar"); +junit = new File(ijDir, "../Other.app/jars/junit-4.13.2.jar"); assertTrue("Should not exist: " + junit, !junit.exists()); // but it must copy the ij dependency -ij = new File(ijDir, "../Other.app/jars/ij-1.48s.jar"); +ij = new File(ijDir, "../Other.app/jars/ij-1.53g.jar"); assertTrue("ImageJ 1.x was not copied: " + ij, ij.exists());