forked from mastodon-sc/mastodon-ctc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
173 lines (160 loc) · 5.2 KB
/
pom.xml
File metadata and controls
173 lines (160 loc) · 5.2 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.scijava</groupId>
<artifactId>pom-scijava</artifactId>
<version>40.0.0</version>
</parent>
<groupId>org.mastodon</groupId>
<artifactId>mastodon-ctc</artifactId>
<version>0.1.5-SNAPSHOT</version>
<name>Mastodon plugins for Import/Export into the CellTrackingChallenge Format</name>
<description>Mastodon plugins to foster communication between Mastodon and CellTrackingChallenge.</description>
<url>https://github.com/mastodon-sc/mastodon-ctc</url>
<inceptionYear>2019</inceptionYear>
<organization>
<name>Mastodon Science</name>
<url>http://github.com/mastodon-sc</url>
</organization>
<licenses>
<license>
<name>Simplified BSD License</name>
<url>https://opensource.org/licenses/BSD-2-Clause</url>
<distribution>repo</distribution>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>org.mastodon</groupId>
<artifactId>mastodon</artifactId>
<version>${mastodon.version}</version>
</dependency>
<dependency>
<groupId>net.celltrackingchallenge</groupId>
<artifactId>CTC-measures</artifactId>
<version>1.0.3</version>
<exclusions>
<exclusion>
<groupId>loci</groupId>
<artifactId>loci_plugins</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- for the GUI progress bar -->
<dependency>
<groupId>org.jhotdraw</groupId>
<artifactId>jhotdraw</artifactId>
<version>7.6.0</version>
</dependency>
<!-- for testing it... -->
<dependency>
<groupId>net.imagej</groupId>
<artifactId>imagej</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<mailingLists>
<mailingList>
<name>ImageJ Forum</name>
<archive>https://forum.image.sc/tag/mastodon</archive>
</mailingList>
</mailingLists>
<scm>
<connection>scm:git:https:github.com/mastodon-sc/mastodon-ctc</connection>
<developerConnection>scm:git:[email protected]:mastodon-sc/mastodon-ctc</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/mastodon-sc/mastodon-ctc</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/mastodon-sc/mastodon-ctc/issues</url>
</issueManagement>
<ciManagement>
<system>GitHub Actions</system>
<url>https://github.com/mastodon-sc/mastodon-ctc/actions</url>
</ciManagement>
<properties>
<package-name>org.mastodon</package-name>
<license.licenseName>bsd_2</license.licenseName>
<license.projectName>CellTrackingChallenge plugins for Mastodon</license.projectName>
<license.organizationName>Mastodon authors</license.organizationName>
<license.copyrightOwners>Vladimir Ulman</license.copyrightOwners>
<mastodon.version>1.0.0-beta-34</mastodon.version>
</properties>
<developers>
<developer>
<id>xulman</id>
<name>Vladimir Ulman</name>
<email>[email protected]</email>
<url>https://imagej.net/people/xulman</url>
<organization>IT4Innovations and CBIA and CEITEC</organization>
<organizationUrl>https://www.fi.muni.cz/~xulman/</organizationUrl>
<roles>
<role>lead</role>
<role>developer</role>
</roles>
</developer>
</developers>
<contributors>
<contributor>
<name>Alex Herbert</name>
<url>https://github.com/aherbert</url>
<properties>
<role>contributing developer</role>
</properties>
</contributor>
</contributors>
<repositories>
<repository>
<id>scijava.public</id>
<url>https://maven.scijava.org/content/groups/public</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>4.9.10</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
<configuration>
<dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
<generateGitPropertiesFile>true</generateGitPropertiesFile>
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
<includeOnlyProperties>
<includeOnlyProperty>^git.build.(time|version)$</includeOnlyProperty>
<includeOnlyProperty>^git.commit.id.(abbrev|full)$</includeOnlyProperty>
</includeOnlyProperties>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
<configuration>
<target>
<!-- make sure no COMMITrev tag files are floating around from some previous runs -->
<!-- NB: this task is redundant whenever 'mvn clean' is executed... -->
<delete><fileset dir="${project.build.outputDirectory}" includes="COMMITrev_*"/></delete>
<touch file="${project.build.outputDirectory}/COMMITrev_${git.commit.id.abbrev}_${project.artifactId}"/>
</target>
</configuration>
</plugin>
</plugins>
</build>
</project>