-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is the end of ImgLib1 as we know it
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
Showing
38 changed files
with
5,418 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.