Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.scijava</groupId>
<artifactId>pom-scijava</artifactId>
<version>28.0.0</version>
<version>30.0.0</version>
<relativePath />
</parent>

Expand Down
4 changes: 2 additions & 2 deletions src/it/populate-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.imagej</groupId>
<artifactId>ij</artifactId>
<version>1.48s</version>
<version>1.53g</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions src/it/populate-app/verify.bsh
Original file line number Diff line number Diff line change
Expand Up @@ -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());