Skip to content

Commit a599c86

Browse files
authored
Merge pull request #27 from scijava/update-populate-app-test
Update populate-app test
2 parents 18fdc28 + 01bddae commit a599c86

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.scijava</groupId>
77
<artifactId>pom-scijava</artifactId>
8-
<version>28.0.0</version>
8+
<version>30.0.0</version>
99
<relativePath />
1010
</parent>
1111

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)