-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
84 lines (76 loc) · 2.39 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?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>org.scijava</groupId>
<artifactId>pom-scijava</artifactId>
<version>1.27</version>
</parent>
<groupId>sc.fiji</groupId>
<artifactId>OMETiffWriterTest_</artifactId>
<version>1.0.0</version>
<name>plugins/OMETiffWriterTest_.jar</name>
<dependencies>
<dependency>
<groupId>net.imagej</groupId>
<artifactId>ij</artifactId>
<version>${imagej1.version}</version>
</dependency>
<dependency>
<groupId>sc.fiji</groupId>
<artifactId>fiji-lib</artifactId>
<version>${imagej.version}</version>
</dependency>
<dependency>
<groupId>loci</groupId>
<artifactId>scifio</artifactId>
<version>4.5-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>loci</groupId>
<artifactId>bio-formats</artifactId>
<version>4.5-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>loci</groupId>
<artifactId>loci_plugins</artifactId>
<version>4.5-SNAPSHOT</version>
</dependency>
</dependencies>
<developers>
<developer>
<id>dscho</id>
<name>Johannes Schindelin</name>
<email>[email protected]</email>
<url>http://loci.wisc.edu/people/johannes-schindelin</url>
<organization>UW-Madison LOCI</organization>
<organizationUrl>http://loci.wisc.edu/</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>-6</timezone>
</developer>
</developers>
<!-- NB: for project parent -->
<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>
<scm>
<connection>scm:git:git://github.com/imagej/minimal-ij1-plugin</connection>
<developerConnection>scm:git:[email protected]:imagej/minimal-ij1-plugin</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/imagej/minimal-ij1-plugin</url>
</scm>
<description>A test of the OME-TIFF writing ala the OpenSPIM plugin for Micro-Manager; designed to demonstrate flaws in the current scifio jar.</description>
</project>