-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bump n5 artifact and plugin versions #259
Conversation
bigwarp failed for a silly reason...on it. not sure about SNT though. |
Updates: @cmhulbert has tracked down the issue with n5-imglib2 and is dealing with that right now. I believe I fixed bigwarp, and think the remaining issues there stem from n5-imglib2. SNT is different. I did some investigating, and don't believe the errors relate to the n5 version changes here. Conclusion - I'll wait on Caleb to deal with n5-imglib2. I expect that will be the last issue related to this PR, since from what I can tell, other failures are unrelated. But we will see and revisit when Caleb's done. SNT
what I added to the SNT pom
build failures with new java versions
|
I suggest to ignore the SNT failure. I may disable it in the mega-melt again, to work around this issue. It was only recently re-enabled, because I thought it would/could work, but clearly not. |
So the n5-imglib2 issue is unrelated from this PR. It seems it has been present ever since this commit: Update component versions. I am looking into it, but I think for this PR, It's probably worth reverting this version bump: In the meantime, I'll work on a bug fix for |
@cmhulbert Thanks for investigating. Downgrading imglib2-label-multisets to 0.11.5 sounds good to me. |
I'll downgrade it in this PR and we can see what happens to the build. |
It looks like everything passed except SNT and bigwarp. I have a commit locally to disable SNT again for now (it fails due to the fact that scijava-plugins-io-table is now obsolete and is no longer managed in pom-scijava). As for bigwarp, I'm not sure, but I'm going to merge this now and then run a melt locally to double check it. |
@ctrueden , if bigwarp is still causing an issue (I think it might be?) |
@ctrueden , I was not aware of it. Is https://github.com/scijava/scijava-table the new alternative? If so, I should be able to do the required changes. On a related note: Since we depend on sciview, I assume SNT needs to be compiled also with Java21? Is that OK, or should we try to depend only on sciview at runtime? |
@tferr The
I think it'll be simplest to just bump your Unfortunately, scenery's move to Java 21 leaves us in kind of a bind with respect to SNT. The pom-scijava "mega-melt" integration test right now is completely focused on Java 8. It is on my radar to make the mega-melt sensitive to the minimum Java version needed for each of the components it tests, but it does not do that yet. So for the moment, it cannot test that components requiring Java >8 still work when built and run with pom-scijava's preferred versions of all managed dependencies. Anyway, I don't think any further action on your part is needed for the moment. You already did the hard work of updating SNT to the latest scenery & sciview, which is awesome. As pom-scijava 38 gets closer to release, and we approach a corresponding new release of Fiji, I'll look more closely at SNT's current dependency situation and try to get it squared with the pom-scijava state. The way I'm currently leaning toward dealing with it is via a so-called "preemptive version bump" of SNT in pom-scijava: i.e. we would release pom-scijava 38.0.0 referencing a not-yet-released 5.0.0 version of SNT, and then you would update SNT's parent pom-scijava version to 38.0.0, and you can remove all the version pins from properties, and make sure everything builds and works well with that latest state, and then actually cut the 5.0.0 release. I often use this technique when releasing Sorry for the long explanation; I hope it makes sense. |
@bogovicj About bigwarp... the issue is just that we upgraded EJML and it changed groupIds. But the version of bigwarp being referenced in pom-scijava still depends on a too-old release of jitk-tps which depends on the old EJML. The proper fix would be to update bigwarp to depend on jitk-tps 3.0.4 as well as the 0.41 version of ejml. Here is a rough patch to bigwarp's diff --git a/pom.xml b/pom.xml
index c256480..96f5236 100644
--- a/pom.xml
+++ b/pom.xml
@@ -123,7 +123,7 @@
<jcommander.version>1.48</jcommander.version>
<alphanumeric-comparator.version>1.4.1</alphanumeric-comparator.version>
- <jitk-tps.version>3.0.3</jitk-tps.version>
+ <jitk-tps.version>3.0.4</jitk-tps.version>
<!-- NB: Deploy releases to the SciJava Maven repository. -->
<releaseProfiles>sign,deploy-to-scijava</releaseProfiles>
@@ -138,6 +138,7 @@
<n5-ij.version>4.1.0</n5-ij.version>
<n5-viewer_fiji.version>6.1.0</n5-viewer_fiji.version>
+ <ejml-all.version>0.41</ejml-all.version>
</properties>
<repositories>
@@ -309,6 +310,11 @@
<groupId>gov.nist.math</groupId>
<artifactId>jama</artifactId>
</dependency>
+ <dependency>
+ <groupId>org.ejml</groupId>
+ <artifactId>ejml-all</artifactId>
+ <version>${ejml-all.version}</version>
+ </dependency>
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom2</artifactId>
@@ -343,7 +349,6 @@
<artifactId>xmlunit</artifactId>
<version>1.5</version>
</dependency>
-
</dependencies>
<profiles> (I say "rough" because properly, the dependency should not be on Unfortunately, bigwarp's code needs updating to accommodate this upgrade:
Once the code is adjusted to work with the 0.41 version of EJML, then cut a new version of bigwarp_fiji, and bump the version in pom-scijava here, and the mega-melt should be fixed. Let me know if anything is unclear, or if you need any help with anything, or if you disagree with this as the best path forward. |
No description provided.