-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
115 lines (94 loc) · 3.48 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
115
<?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>
<!-- Of course, make sure to replace `mastodon-plugin-example` by whatever your own
artifact is going to be called. -->
<groupId>org.mastodon</groupId>
<artifactId>mastodon-plugin-example</artifactId>
<version>1.0.0-beta-25-SNAPSHOT</version>
<name>Mastodon Plugin Example</name>
<description>A template / example code to start coding your own Mastodon plugin.</description>
<url>https://github.com/mastodon-sc/mastodon</url>
<inceptionYear>2023</inceptionYear>
<organization>
<name>Mastodon Science</name>
<url>https://mastodon.org</url>
</organization>
<licenses>
<license>
<name>Simplified BSD License</name>
<url>https://opensource.org/licenses/BSD-2-Clause</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- Below we include all the main mastodon artifacts as dependencies, in case you
need them in your plugin. Feel free to remove what you do not need. -->
<properties>
<mastodon.group>org.mastodon</mastodon.group>
<mastodon-app.version>1.0.0-beta-28</mastodon-app.version>
<package-name>org.mastodon</package-name>
<license.licenseName>bsd_2</license.licenseName>
<license.projectName>Mastodon</license.projectName>
<license.organizationName>Mastodon authors</license.organizationName>
<license.copyrightOwners>Tobias Pietzsch, Jean-Yves Tinevez</license.copyrightOwners>
<releaseProfiles>deploy-to-scijava</releaseProfiles>
</properties>
<mailingLists>
<mailingList>
<name>Image.sc Forum</name>
<archive>https://forum.image.sc/tag/mastodon</archive>
</mailingList>
</mailingLists>
<!-- Here as well, replace `mastodon-plugin-example` by the name of your own artifact. -->
<scm>
<connection>scm:git:git://github.com/mastodon-sc/mastodon-plugin-example</connection>
<developerConnection>scm:git:[email protected]:mastodon-sc/mastodon-plugin-example</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/mastodon-sc/mastodon-plugin-example</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/mastodon-sc/mastodon-plugin-example/issues</url>
</issueManagement>
<ciManagement>
<system>Travis CI</system>
<url>https://travis-ci.com/mastodon-sc/mastodon-plugin-example</url>
</ciManagement>
<!-- And of course, list yourself as developer below, instead of me. -->
<developers>
<developer>
<id>tinevez</id>
<name>Jean-Yves Tinevez</name>
<email>[email protected]</email>
<url>https://research.pasteur.fr/en/member/jean-yves-tinevez/</url>
<organization>Institut Pasteur</organization>
<organizationUrl>http://www.pasteur.fr/</organizationUrl>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
<contributors>
<contributor>
<name>grrrr</name>
</contributor>
</contributors>
<repositories>
<repository>
<id>scijava.public</id>
<url>https://maven.scijava.org/content/groups/public</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>${mastodon.group}</groupId>
<artifactId>mastodon-app</artifactId>
<version>${mastodon-app.version}</version>
</dependency>
</dependencies>
</project>