Skip to content

Commit

Permalink
fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoKiaru committed Nov 5, 2023
1 parent e4f2cc5 commit 2042d79
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 35 deletions.
37 changes: 5 additions & 32 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -106,27 +106,16 @@
<license.excludes>**/resources/**</license.excludes>
<main-class>ch.epfl.biop.abba.ABBALaunchMouse</main-class>

<!-- bigdataviewer dependencies -->
<bigvolumeviewer.version>0.3.1</bigvolumeviewer.version>
<!-- bdv playground related dependencies -->
<bigdataviewer-playground.version>0.8.0</bigdataviewer-playground.version>
<bigdataviewer-image-loaders.version>0.6.1</bigdataviewer-image-loaders.version>
<!--<bigdataviewer-playground-display.version>0.4.0</bigdataviewer-playground-display.version>-->
<bigdataviewer-spimdata-extras.version>0.4.0</bigdataviewer-spimdata-extras.version>
<image-transform-converters.version>0.1.6</image-transform-converters.version>
<elastix_registration_server.version>0.1.4</elastix_registration_server.version>
<bigdataviewer-biop-tools.version>0.7.3-SNAPSHOT</bigdataviewer-biop-tools.version>
<bigdataviewer-biop-tools.version>0.7.3</bigdataviewer-biop-tools.version>
<bigdataviewer-selector.version>0.2.3</bigdataviewer-selector.version>

<!-- biop dependencies -->
<ijl-utilities-wrappers.version>0.9.3</ijl-utilities-wrappers.version>
<ijp-kheops.version>0.4.2</ijp-kheops.version>

<!-- maths -->
<leastsquares.version>1.0.0</leastsquares.version>

<!-- ABBA specific -->
<pyimagej-scijava-command.version>0.2.0</pyimagej-scijava-command.version>
<atlas.version>0.2.0</atlas.version>
<oshi-core.version>5.5.1</oshi-core.version>

Expand All @@ -136,6 +125,7 @@

<!-- to generate python API, method put in tests -->
<reflections.version>0.10.2</reflections.version>
<pyimagej-scijava-command.version>0.2.0</pyimagej-scijava-command.version>

<!-- NB: Deploy releases to the SciJava Maven repository. -->
<releaseProfiles>sign,deploy-to-scijava</releaseProfiles>
Expand Down Expand Up @@ -177,11 +167,11 @@
<artifactId>imagej</artifactId>
</dependency>

<dependency>
<!--<dependency>
<groupId>ch.epfl.biop</groupId>
<artifactId>ijl-utilities-wrappers</artifactId>
<version>${ijl-utilities-wrappers.version}</version>
</dependency>
</dependency>-->

<dependency>
<groupId>sc.fiji</groupId>
Expand All @@ -205,15 +195,10 @@
<version>${bigdataviewer-playground.version}</version>
</dependency>

<!--<dependency>
<groupId>sc.fiji.bigdataviewer</groupId>
<artifactId>bigdataviewer-playground-display</artifactId>
<version>${bigdataviewer-playground-display.version}</version>
</dependency>-->

<dependency>
<groupId>net.imagej</groupId>
<artifactId>imagej-omero</artifactId>
<scope>test</scope>
</dependency>

<dependency>
Expand All @@ -228,18 +213,6 @@
</exclusions>
</dependency>

<!--<dependency>
<groupId>ch.epfl.biop</groupId>
<artifactId>bigdataviewer-spimdata-extras</artifactId>
<version>${bigdataviewer-spimdata-extras.version}</version>
</dependency>-->

<dependency>
<groupId>ch.epfl.biop</groupId>
<artifactId>elastix_registration_server</artifactId>
<version>${elastix_registration_server.version}</version>
</dependency>

<dependency>
<groupId>com.github.oshi</groupId>
<artifactId>oshi-core</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@
import bigwarp.BigWarp;
import ch.epfl.biop.atlas.aligner.ABBAHelper;
import ch.epfl.biop.bdv.img.bioformats.BioFormatsHelper;
import ch.epfl.biop.bdv.img.legacy.bioformats.BioFormatsTools;
import ch.epfl.biop.sourceandconverter.register.Elastix2DSplineRegister;
import ch.epfl.biop.wrappers.elastix.ElastixTask;
import ch.epfl.biop.wrappers.elastix.RemoteElastixTask;
import ij.IJ;
import net.imagej.ImageJ;
import net.imagej.updater.UpdateService;
Expand Down Expand Up @@ -66,7 +64,6 @@ public void run() {
body +="Bdv Playground "+VersionUtils.getVersion(SourceAndConverterServices.class)+nl;
body +="Biop Image Loader "+VersionUtils.getVersion(BioFormatsHelper.class)+nl;
body +="Biop Wrappers "+VersionUtils.getVersion(ElastixTask.class)+nl;
body +="Registration Server "+VersionUtils.getVersion(RemoteElastixTask.class)+nl;
//noinspection deprecation
body +="Updates sites: "+sites_string+nl;
body +="```";
Expand Down

0 comments on commit 2042d79

Please sign in to comment.