Skip to content

Commit

Permalink
POM: clean up dependencies
Browse files Browse the repository at this point in the history
In particular, this purges the unused and obsolete org.scijava:vecmath
dependency, and updates the legacy-imglib1 dependency to a newer version
that no longer inherits it transitively.
  • Loading branch information
ctrueden committed Sep 28, 2024
1 parent fada41f commit 445da51
Showing 1 changed file with 56 additions and 5 deletions.
61 changes: 56 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@

<!-- NB: Deploy releases to the SciJava Maven repository. -->
<releaseProfiles>sign,deploy-to-scijava</releaseProfiles>

<legacy-imglib1.version>1.1.11</legacy-imglib1.version>
</properties>

<repositories>
Expand All @@ -119,10 +121,6 @@
<groupId>sc.fiji</groupId>
<artifactId>bigdataviewer-core</artifactId>
</dependency>
<dependency>
<groupId>net.imagej</groupId>
<artifactId>imagej-common</artifactId>
</dependency>
<dependency>
<groupId>net.imagej</groupId>
<artifactId>imagej-deprecated</artifactId>
Expand All @@ -147,9 +145,62 @@
<groupId>sc.fiji</groupId>
<artifactId>SPIM_Registration</artifactId>
</dependency>

<dependency>
<groupId>org.janelia.saalfeldlab</groupId>
<artifactId>n5</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
</dependency>
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom2</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>net.imagej</groupId>
<artifactId>ij</artifactId>
</dependency>
<dependency>
<groupId>sc.fiji</groupId>
<artifactId>fiji-lib</artifactId>
</dependency>
<dependency>
<groupId>sc.fiji</groupId>
<artifactId>spim_data</artifactId>
</dependency>
<dependency>
<groupId>org.scijava</groupId>
<artifactId>vecmath</artifactId>
<artifactId>scijava-common</artifactId>
</dependency>
<dependency>
<groupId>sc.fiji</groupId>
<artifactId>legacy-imglib1</artifactId>
</dependency>
<dependency>
<groupId>net.imglib2</groupId>
<artifactId>imglib2-algorithm</artifactId>
</dependency>
<dependency>
<groupId>sc.fiji</groupId>
<artifactId>SPIM_Opener</artifactId>
</dependency>
<dependency>
<groupId>mpicbg</groupId>
<artifactId>mpicbg</artifactId>
</dependency>
<dependency>
<groupId>net.imglib2</groupId>
<artifactId>imglib2-realtransform</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>
</dependencies>
</project>

0 comments on commit 445da51

Please sign in to comment.