-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
69 lines (61 loc) · 1.88 KB
/
pom.xml
File metadata and controls
69 lines (61 loc) · 1.88 KB
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
<?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>sc.fiji</groupId>
<artifactId>pom-fiji</artifactId>
<version>10.0.1</version>
<relativePath />
</parent>
<groupId>org.openspim</groupId>
<artifactId>openspim-app</artifactId>
<version>0.1.2-SNAPSHOT</version>
<name>OpenSPIM application</name>
<description>Having this artifact in the classpath rebrands ImageJ2/Fiji as OpenSPIM application</description>
<developers>
<developer>
<id>dscho</id>
<name>Johannes Schindelin</name>
<email>johannes.schindelin@gmx.de</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>
<dependencies>
<dependency>
<groupId>net.imagej</groupId>
<artifactId>imagej-legacy</artifactId>
</dependency>
<dependency>
<groupId>org.scijava</groupId>
<artifactId>scijava-common</artifactId>
</dependency>
<dependency>
<groupId>net.imagej</groupId>
<artifactId>imagej</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<!-- NB: for project parent -->
<repositories>
<repository>
<id>imagej.releases</id>
<url>http://maven.imagej.net/content/groups/public</url>
</repository>
</repositories>
<scm>
<connection>scm:git:https://github.com/openspim/openspim-app</connection>
<developerConnection>scm:git:git@github.com:openspim/openspim-app</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/openspim/openspim-app</url>
</scm>
</project>