Skip to content

Commit 01bddae

Browse files
committed
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.
1 parent 75f01f4 commit 01bddae

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/it/populate-app/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@
4040
<dependency>
4141
<groupId>junit</groupId>
4242
<artifactId>junit</artifactId>
43-
<version>4.8.1</version>
43+
<version>4.13.2</version>
4444
<scope>test</scope>
4545
</dependency>
4646
<dependency>
4747
<groupId>net.imagej</groupId>
4848
<artifactId>ij</artifactId>
49-
<version>1.48s</version>
49+
<version>1.53g</version>
5050
</dependency>
5151
</dependencies>
5252

src/it/populate-app/verify.bsh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ source(new File(basedir, "../../../src/it/lib.bsh").getPath());
3131
assertTrue("Should exist: " + plugin, plugin.exists());
3232

3333
// install-artifact must not copy test scope dependencies
34-
junit = new File(ijDir, "../Other.app/jars/junit-4.8.1.jar");
34+
junit = new File(ijDir, "../Other.app/jars/junit-4.13.2.jar");
3535
assertTrue("Should not exist: " + junit, !junit.exists());
3636

3737
// but it must copy the ij dependency
38-
ij = new File(ijDir, "../Other.app/jars/ij-1.48s.jar");
38+
ij = new File(ijDir, "../Other.app/jars/ij-1.53g.jar");
3939
assertTrue("ImageJ 1.x was not copied: " + ij, ij.exists());

0 commit comments

Comments
 (0)