Skip to content

Commit

Permalink
Changed scope of S3 Dependency
Browse files Browse the repository at this point in the history
It seems to be the S3 proxy dependency that is causing all of the issues in the CI so I changed its scope to only apply to the tests in this project.
  • Loading branch information
AvocadoMoon committed Sep 11, 2023
1 parent 1dd5c64 commit f55265c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 6 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@
<groupId>org.scijava</groupId>
<artifactId>scijava-plugins-commands</artifactId>
<scope>runtime</scope>
<version>0.2.4</version>
</dependency>

<!-- <dependency>-->
Expand All @@ -147,19 +148,21 @@
<dependency>
<groupId>org.janelia.saalfeldlab</groupId>
<artifactId>n5</artifactId>
<version>2.5.1</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.janelia.saalfeldlab/n5-imglib2 -->
<dependency>
<groupId>org.janelia.saalfeldlab</groupId>
<artifactId>n5-imglib2</artifactId>
<version>5.0.0</version>
</dependency>

<!-- https://mvnrepository.com/artifact/net.imglib2/imglib2 -->
<dependency>
<groupId>net.imglib2</groupId>
<artifactId>imglib2</artifactId>
<version>6.2.0</version>
<version>6.1.0</version>
</dependency>

<!-- https://mvnrepository.com/artifact/net.imglib2/imglib2-ij -->
Expand All @@ -174,6 +177,7 @@
<dependency>
<groupId>org.janelia.saalfeldlab</groupId>
<artifactId>n5-aws-s3</artifactId>
<version>3.2.0</version>
</dependency>


Expand All @@ -188,6 +192,7 @@
<groupId>org.gaul</groupId>
<artifactId>s3proxy</artifactId>
<version>1.7.1</version>
<scope>test</scope>
</dependency>
</dependencies>

Expand Down
2 changes: 0 additions & 2 deletions src/test/java/org/vcell/vcellfiji/N5ImageHandlerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@
import ij.io.Opener;
import ij.plugin.ImageCalculator;
import junit.framework.TestCase;
import org.apache.commons.lang3.ClassLoaderUtils;
import org.gaul.s3proxy.S3Proxy;
import org.jclouds.ContextBuilder;
import org.jclouds.blobstore.BlobStoreContext;
import sun.misc.ClassLoaderUtil;

import java.io.File;
import java.io.IOException;
Expand Down

0 comments on commit f55265c

Please sign in to comment.