Skip to content

Commit

Permalink
Fix enforcer issues - deactivate tests
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoKiaru committed Jul 24, 2024
1 parent 73cc20e commit 28ff4ed
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
19 changes: 9 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,8 @@
<bigdataviewer-spimdata-extras.version>0.4.0</bigdataviewer-spimdata-extras.version>

<!-- only used in tests! -->
<bigdataviewer-playground.version>0.8.1</bigdataviewer-playground.version>
<bigdataviewer-biop-tools.version>0.7.3</bigdataviewer-biop-tools.version>
<bf.version>7.3.1</bf.version>
<!--bigdataviewer-playground.version>0.10.3</bigdataviewer-playground.version>
<bigdataviewer-biop-tools.version>0.10.0</bigdataviewer-biop-tools.version-->

<!-- <scijava.app.directory>C:/Fiji_template</scijava.app.directory> -->
<!-- <scijava.app.subdirectory>plugins/BIOP</scijava.app.subdirectory> -->
Expand All @@ -167,7 +166,7 @@
<dependency>
<groupId>ome</groupId>
<artifactId>formats-bsd</artifactId>
<version>${bf.version}</version>
<!--version>${bf.version}</version-->
<exclusions>
<exclusion>
<!-- NB: Exclude problematic uber-JAR that bundles commons-io. -->
Expand All @@ -185,7 +184,7 @@
<dependency>
<groupId>ome</groupId>
<artifactId>formats-api</artifactId>
<version>${bf.version}</version>
<!--version>${bf.version}</version-->
<exclusions>
<exclusion>
<!-- NB: Exclude problematic uber-JAR that bundles commons-io. -->
Expand All @@ -203,7 +202,7 @@
<dependency>
<groupId>ome</groupId>
<artifactId>formats-gpl</artifactId>
<version>${bf.version}</version>
<!--version>${bf.version}</version-->
<exclusions>
<exclusion>
<!-- NB: Exclude problematic uber-JAR that bundles commons-io. -->
Expand Down Expand Up @@ -289,12 +288,12 @@

<!-- test dependencies -->

<dependency>
<!--dependency>
<groupId>ch.epfl.biop</groupId>
<artifactId>bigdataviewer-biop-tools</artifactId>
<version>${bigdataviewer-biop-tools.version}</version>
<scope>test</scope>
</dependency>
</dependency-->

<dependency>
<groupId>junit</groupId>
Expand All @@ -308,12 +307,12 @@
<scope>test</scope>
</dependency>

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

<!-- <dependency> if you want to test the alternative CZI reader
<groupId>ch.epfl.biop</groupId>
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/ch/epfl/biop/SpimDataPostprocessor.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class SpimDataPostprocessor extends AbstractPostprocessorPlugin {
@Override
public void process(Module module) {

module.getOutputs().forEach((name, object) -> {
/*module.getOutputs().forEach((name, object) -> {
// log.accept("input:\t"+name+"\tclass:\t"+object.getClass().getSimpleName());
if (object instanceof AbstractSpimData) {
AbstractSpimData<?> asd = (AbstractSpimData<?>) object;
Expand All @@ -70,6 +70,6 @@ public void process(Module module) {
objectService.addObject(asd);
}
}
});
});*/
}
}

0 comments on commit 28ff4ed

Please sign in to comment.