Skip to content

Commit

Permalink
Merge pull request #79 from saalfeldlab/mixedFCOrderMultiscales
Browse files Browse the repository at this point in the history
Better loading of arbitrarily axis-permuted data
  • Loading branch information
bogovicj authored May 15, 2024
2 parents edbb729 + 27479ae commit 47d4f29
Show file tree
Hide file tree
Showing 13 changed files with 1,486 additions and 703 deletions.
32 changes: 21 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,16 @@
<!-- NB: Deploy releases to the SciJava Maven repository. -->
<releaseProfiles>sign,deploy-to-scijava</releaseProfiles>

<imagej-legacy.version>1.2.2</imagej-legacy.version>

<n5.version>3.2.0</n5.version>
<n5-aws-s3.version>4.1.2</n5-aws-s3.version>
<n5-blosc.version>1.1.1</n5-blosc.version>
<n5-google-cloud.version>4.1.0</n5-google-cloud.version>
<n5-hdf5.version>2.2.0</n5-hdf5.version>
<n5-imglib2.version>7.0.0</n5-imglib2.version>
<n5-universe.version>1.4.3</n5-universe.version>
<n5-zarr.version>1.3.1</n5-zarr.version>
<n5-universe.version>1.5.0</n5-universe.version>
<n5-zarr.version>1.3.2</n5-zarr.version>
<n5-zstandard.version>1.0.2</n5-zstandard.version>
</properties>

Expand All @@ -114,10 +116,19 @@
<groupId>org.janelia.saalfeldlab</groupId>
<artifactId>n5-hdf5</artifactId>
</dependency>
<dependency>
<groupId>org.janelia.saalfeldlab</groupId>
<artifactId>n5-universe</artifactId>
</dependency>
<dependency>
<groupId>org.janelia.saalfeldlab</groupId>
<artifactId>n5-zarr</artifactId>
</dependency>
<dependency>
<groupId>org.janelia</groupId>
<artifactId>n5-zstandard</artifactId>
<version>${n5-zstandard.version}</version>
</dependency>

<!-- ImgLib2 dependencies -->
<dependency>
Expand Down Expand Up @@ -174,25 +185,24 @@
<groupId>info.picocli</groupId>
<artifactId>picocli</artifactId>
</dependency>
<dependency>
<groupId>com.formdev</groupId>
<artifactId>flatlaf</artifactId>
</dependency>


<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.formdev</groupId>
<artifactId>flatlaf</artifactId>
</dependency>
<dependency>
<groupId>org.janelia.saalfeldlab</groupId>
<artifactId>n5-universe</artifactId>
</dependency>
<dependency>
<groupId>org.janelia</groupId>
<artifactId>n5-zstandard</artifactId>
<version>${n5-zstandard.version}</version>
<version>${n5-universe.version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
</dependencies>

Expand Down
Loading

0 comments on commit 47d4f29

Please sign in to comment.