Skip to content

Commit 78477ea

Browse files
committed
Upgrade ImageJ to latest official "full" release.
1 parent 580778d commit 78477ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scala-console/project/MyBuild.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ object MyBuild extends Build {
3333

3434
/**
3535
* Copy dependencies to "./"sandbox/plugin/ij-plugins".
36-
* Excludes ij-1.45s.jar and nativelibs4java jars.
36+
* Excludes ij-1.47v.jar and nativelibs4java jars.
3737
*/
3838
def prepareRunFiles(jar: java.io.File, dependencies: Seq[Attributed[File]]): Seq[java.io.File] = {
3939
println("Preparing ImageJ plugin directories")
4040
val files = jar +: (for (f <- dependencies) yield f.data)
4141
val pluginsDir = file(".") / "sandbox" / "plugins" / "ij-plugins"
4242
pluginsDir.mkdirs()
43-
for (f <- files; if (!f.isDirectory); if(!f.getPath.contains("nativelibs4java")); if(!f.getPath.contains("ij-1.45s.jar"))) {
43+
for (f <- files; if (!f.isDirectory); if(!f.getPath.contains("nativelibs4java")); if(!f.getPath.contains("ij-1.47v.jar"))) {
4444
println("Copying: " + f)
4545
IO.copyFile(f, pluginsDir / f.getName)
4646
}

0 commit comments

Comments
 (0)