-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
124 lines (107 loc) · 3.96 KB
/
pom.xml
File metadata and controls
124 lines (107 loc) · 3.96 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
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
115
116
117
118
119
120
121
122
123
124
<?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>
<!-- Inherited Icy Parent POM -->
<parent>
<artifactId>pom-icy</artifactId>
<groupId>org.bioimageanalysis.icy</groupId>
<version>3.0.0-a.5</version>
</parent>
<!-- Project Information -->
<artifactId>icy-cellpose</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>Icy-Cellpose</name>
<description>Cellpose 3 integration in Icy via Appose.</description>
<url>https://github.com/Image-Analysis-Hub/Icy-Cellpose</url>
<inceptionYear>2026</inceptionYear>
<organization>
<name>Institut Pasteur</name>
<url>https://pasteur.fr</url>
</organization>
<scm>
<!-- Replace this URL with your Git repository URL -->
<url>https://gitlab.pasteur.fr/bia/icy/extensions/extension-template</url>
<!-- Usually, version tags in git are named with the same convention as Maven, but you can change it -->
<tag>v${project.version}</tag>
</scm>
<issueManagement>
<!-- Replace this with your Git repository issues management -->
<system>GitLab Issues</system>
<url>https://gitlab.pasteur.fr/bia/icy/extensions/extension-template/-/issues</url>
</issueManagement>
<ciManagement>
<!-- Replace this with your Git repository CI management -->
<system>GitLab CI</system>
<url>https://gitlab.pasteur.fr/bia/icy/extensions/extension-template/-/pipelines</url>
</ciManagement>
<licenses>
<license>
<name>GNU LGPLv3</name>
<url>https://www.gnu.org/licenses/lgpl-3.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>my-id</id>
<name>FirstName LastName</name>
<url>https://mywebpage.net</url>
</developer>
</developers>
<contributors>
<contributor>
<name>Fistname Lastname</name>
</contributor>
</contributors>
<mailingLists>
<mailingList>
<!-- Replace this with your mailing list -->
<name>MyMailingList</name>
<post>contact@example.org</post>
</mailingList>
</mailingLists>
<properties>
<license.licenseName>GNU LGPLv3</license.licenseName>
<!-- Replace this with your organization name -->
<license.copyrightOwners>MyOrganizationName</license.copyrightOwners>
</properties>
<!-- List of project's dependencies -->
<dependencies>
<!-- The Kernel default extensions -->
<dependency>
<groupId>org.bioimageanalysis.icy</groupId>
<artifactId>kernel-extension</artifactId>
</dependency>
<dependency>
<groupId>org.bioimageanalysis.icy</groupId>
<artifactId>label-extractor</artifactId>
<version>2.0.0-a.3</version>
</dependency>
<!-- The EzPlug library, simplifies writing UI for Icy plugins. -->
<dependency>
<groupId>org.bioimageanalysis.icy</groupId>
<artifactId>ezplug</artifactId>
</dependency>
<dependency>
<groupId>org.bioimageanalysis.icy</groupId>
<artifactId>protocols</artifactId>
</dependency>
<dependency>
<groupId>org.bioimageanalysis.icy</groupId>
<artifactId>imglib2-icy</artifactId>
</dependency>
<!-- Appose dependencies -->
<dependency>
<groupId>org.apposed</groupId>
<artifactId>appose</artifactId>
<version>0.11.0</version>
</dependency>
<dependency>
<groupId>net.imglib2</groupId>
<artifactId>imglib2-appose</artifactId>
<version>0.9.0</version>
</dependency>
</dependencies>
</project>