Skip to content

Commit

Permalink
This is the end of ImgLib1 as we know it
Browse files Browse the repository at this point in the history
Starting with this commit, ImgLib1 will be phased out.

To make phasing out easier, the SPIM Registration project at
https://github.com/fiji/fiji/tree/master/src-plugins/SPIM_Registration/
will add ImgLib2 wrappers for ImgLib1 data structures.

Signed-off-by: Johannes Schindelin <[email protected]>
  • Loading branch information
dscho committed Apr 30, 2013
1 parent 663e062 commit b8d4c02
Show file tree
Hide file tree
Showing 38 changed files with 5,418 additions and 0 deletions.
339 changes: 339 additions & 0 deletions LICENSE.txt

Large diffs are not rendered by default.

130 changes: 130 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>net.imglib2</groupId>
<artifactId>pom-imglib2</artifactId>
<version>2.0.0-SNAPSHOT</version>
</parent>

<artifactId>imglib2-tests</artifactId>

<name>ImgLib2 Tests</name>
<description>Integration tests for ImgLib2.</description>

<licenses>
<license>
<name>GPL 2 or later</name>
<url>http://www.gnu.org/licenses/gpl-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>imglib2</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>imglib2-algorithms</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>imglib2-algorithms-gpl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>imglib2-algorithms-legacy</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>imglib2-ij</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>imglib2-io</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>imglib2-realtransform</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${imagej.groupId}</groupId>
<artifactId>ij</artifactId>
<version>${imagej1.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${scifio.groupId}</groupId>
<artifactId>scifio-devel</artifactId>
<version>${scifio.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jama</groupId>
<artifactId>jama</artifactId>
<version>1.0.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.9</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>mpicbg</groupId>
<artifactId>mpicbg</artifactId>
<version>20111128</version>
<scope>test</scope>
</dependency>
</dependencies>

<properties>
<project.rootdir>${basedir}/../..</project.rootdir>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<licenseName>gpl_v2</licenseName>
</configuration>
</plugin>
</plugins>
</build>

<!-- NB: for project parent, in case of partial checkout -->
<repositories>
<repository>
<id>imagej.releases</id>
<url>http://maven.imagej.net/content/repositories/releases</url>
</repository>
<repository>
<id>imagej.snapshots</id>
<url>http://maven.imagej.net/content/repositories/snapshots</url>
</repository>
</repositories>

</project>
Loading

0 comments on commit b8d4c02

Please sign in to comment.