-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
114 lines (105 loc) · 2.86 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?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.clearcontrol</groupId>
<artifactId>ClearParentPom</artifactId>
<version>0.9.1</version>
<relativePath />
</parent>
<groupId>net.clearcontrol</groupId>
<artifactId>ClearOpenSPIM</artifactId>
<version>0.1.0-m</version>
<name>ClearOpenSPIM</name>
<description>ClearOpenSPIM</description>
<url>https://github.com/ClearControl/ClearOpenSPIM</url>
<inceptionYear>2018</inceptionYear>
<organization>
<name>ClearControl</name>
<url>http://clearcontrol.net</url>
</organization>
<licenses>
<license>
<name>Simplified BSD License</name>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>haesleinhuepf</id>
<name>Robert Haase</name>
<url>https://haesleinhuepf.net</url>
<organization>MPI CBG</organization>
<roles>
<role>founder</role>
<role>lead</role>
<role>developer</role>
<role>debugger</role>
<role>reviewer</role>
<role>support</role>
<role>maintainer</role>
</roles>
</developer>
</developers>
<contributors>
<contributor>
<name>Loic A. Royer</name>
<organization>CZ Biohub</organization>
<roles>
<role>developer</role>
</roles>
</contributor>
<contributor>
<name>Alexandr Dibrov</name>
<organization>MPI CBG</organization>
<roles>
<role>developer</role>
</roles>
</contributor>
</contributors>
<scm>
<connection>scm:git:git://github.com/ClearControl/ClearControl</connection>
<developerConnection>scm:git:[email protected]/ClearControl/ClearControl</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/ClearControl/ClearControl</url>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/ClearControl/ClearControl/issues</url>
</issueManagement>
<ciManagement>
<system>None</system>
</ciManagement>
<properties>
<package-name>net.clearcontrol</package-name>
<imagej.app.directory>C:/Programs/Fiji.app/</imagej.app.directory>
</properties>
<dependencies>
<dependency>
<groupId>net.clearcontrol</groupId>
<artifactId>clearcontrol-lightsheet</artifactId>
</dependency>
<dependency>
<groupId>net.clearcontrol</groupId>
<artifactId>picard4dusbstage</artifactId>
</dependency>
<dependency>
<groupId>andor</groupId>
<artifactId>andorsdkj</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>hslh</id>
<url>http://dl.bintray.com/haesleinhuepf/snapshots</url>
</repository>
</repositories>
</project>