Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix the build
This commit:

1) Updates the build to use the latest pom-imagej, and hence
   the latest versions of the SciJava software components.

2) Updates to a valid release version of TrackMate
   (the version 2.5.0 was tainted and unreproducible).

3) Removes a spurious reference to the loci.formats package.
  • Loading branch information
ctrueden committed Dec 4, 2014
1 parent 956550f commit 4102978
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 21 deletions.
6 changes: 1 addition & 5 deletions core/pom.xml
Expand Up @@ -13,10 +13,6 @@

<name>JEX core functionality</name>

<properties>
<scijava-common.version>2.31.0</scijava-common.version>
</properties>

<dependencies>
<dependency>
<groupId>ch.randelshofer</groupId>
Expand Down Expand Up @@ -77,7 +73,7 @@
<dependency>
<groupId>sc.fiji</groupId>
<artifactId>TrackMate_</artifactId>
<version>2.5.0</version>
<version>2.6.1</version>
</dependency>

<!-- ImageJ dependencies -->
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/image/roi/PointTester.java
Expand Up @@ -106,7 +106,7 @@ public static void playWithUpdater()
}
}

public static TreeMap<DimensionMap,String> getTiffs(String path, ImageJ ij) throws IOException, FormatException, loci.formats.FormatException
public static TreeMap<DimensionMap,String> getTiffs(String path, ImageJ ij) throws IOException, FormatException
{
final String outPath = "/Users/jaywarrick/Desktop/NewFolder";
final SCIFIO scifio = new SCIFIO(ij.getContext());
Expand Down
18 changes: 3 additions & 15 deletions pom.xml
Expand Up @@ -4,9 +4,9 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.scijava</groupId>
<artifactId>pom-scijava</artifactId>
<version>3.4</version>
<groupId>net.imagej</groupId>
<artifactId>pom-imagej</artifactId>
<version>5.2.0</version>
</parent>

<groupId>io.github.jaywarrick</groupId>
Expand All @@ -22,18 +22,6 @@
<module>jex</module>
</modules>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>net.imagej</groupId>
<artifactId>pom-imagej</artifactId>
<version>2.49</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<repositories>
<repository>
<id>imagej.public</id>
Expand Down

0 comments on commit 4102978

Please sign in to comment.