8000 Make it more obvious how to update the POM · imagej/example-legacy-plugin@475883c · GitHub
[go: up one dir, main page]

Skip to content

Commit 475883c

Browse files
committed
Make it more obvious how to update the POM
There are several fields that should be changed to reflect your project. Now, each such line is labeled FIXME with specific guidance.
1 parent d507448 commit 475883c

File tree

1 file changed

+22
-45
lines changed

1 file changed

+22
-45
lines changed

pom.xml

Lines changed: 22 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -12,31 +12,34 @@
1212
<relativePath />
1313
</parent>
1414

15-
<groupId>com.mycompany</groupId>
16-
<artifactId>Process_Pixels</artifactId>
15+
<groupId>com.mycompany</groupId> <!-- FIXME: Your organization groupId here -->
16+
<artifactId>Process_Pixels</artifactId> <!-- FIXME: Your project artifactId here -->
1717
<version>0.1.0-SNAPSHOT</version>
1818

19-
<name>Process Pixels</name>
20-
<description>A Maven project implementing an ImageJ 1.x plugin.</description>
21-
<url>http://mycompany.com/imagej/process-pixels/</url>
22-
<inceptionYear>2012</inceptionYear>
19+
<name>Process Pixels</name> <!-- FIXME: Your project name here -->
20+
<description>A Maven project implementing an ImageJ 1.x plugin.</description> <!-- FIXME: Your project description here -->
21+
<url>https://mycompany.com/imagej/process-pixels/</url> <!-- FIXME: Your project website here -->
22+
<inceptionYear>2012</inceptionYear> <!-- FIXME: Your project starting year here -->
2323
<organization>
24-
<name>My Company</name>
25-
<url>http://mycompany.com/</url>
24+
<name>My Company</name> <!-- FIXME: Your organization name here -->
25+
<url>https://mycompany.com/</url> <!-- FIXME: Your organization website here -->
2626
</organization>
2727
<licenses>
28-
<license>
29-
<name>Simplified BSD License</name>
28+
<license> <!-- FIXME: Your license here -->
29+
<name>CC0</name>
30+
<url>https://creativecommons.org/publicdomain/zero/1.0/</url>
3031
<distribution>repo</distribution>
3132
</license>
3233
</licenses>
3334

3435
<developers>
36+
<!-- See https://imagej.net/Team -->
3537
<developer>
36-
<id>ctrueden</id>
37-
<name>Curtis Rueden</name>
38-
<url>https://imagej.net/User:Rueden</url>
38+
<id>octocat</id> <!-- FIXME: Your GitHub handle here -->
39+
<name>Noma Onomatopoeia</name> <!-- FIXME: Your name here -->
40+
<url>https://mycompany.com/people/noma-onomatopoeia</url> <!-- FIXME: Your website here -->
3941
<roles>
42+
<role>founder</role>
4043
<role>lead</role>
4144
<role>developer</role>
4245
<role>debugger</role>
@@ -48,40 +51,14 @@
4851
</developers>
4952
<contributors>
5053
<contributor>
51-
<name>Johannes Schindelin</name>
52-
<url>https://imagej.net/User:Schindelin</url>
53-
<roles><role>founder</role></roles>
54-
<properties><id>dscho</id></properties>
55-
</contributor>
56-
<contributor>
57-
<name>Olivier Burri</name>
58-
<url>https://imagej.net/User:Oburri</url>
59-
<properties><id>lacan</id></properties>
60-
</contributor>
61-
<contributor>
62-
<name>Mark Hiner</name>
63-
<url>https://imagej.net/User:Hinerm</url>
64-
<properties><id>hinerm</id></properties>
65-
</contributor>
66-
<contributor>
67-
<name>Jules Maselbas</name>
68-
</contributor>
69-
<contributor>
70-
<name>Kota Miura</name>
71-
<url>https://imagej.net/User:Miura</url>
72-
<properties><id>miura</id></properties>
73-
</contributor>
74-
<contributor>
75-
<name>Yili Zhao</name>
76-
<url>https://imagej.net/User:Panovr</url>
77-
<properties><id>panovr</id></properties>
54+
<name>None</name>
7855
</contributor>
7956
</contributors>
8057

8158
<mailingLists>
8259
<mailingList>
8360
<name>Image.sc Forum</name>
84-
<archive>https://forum.image.sc/tags/imagej</archive>
61+
<archive>https://forum.image.sc/tag/imagej</archive>
8562
</mailingList>
8663
</mailingLists>
8764

@@ -100,10 +77,10 @@
10077
</ciManagement>
10178

10279
<properties>
103-
<package-name>com.mycompany.imagej</package-name>
104-
<main-class>com.mycompany.imagej.Process_Pixels</main-class>
105-
<license.licenseName>bsd_2</license.licenseName>
106-
<license.copyrightOwners>My Company, Inc.</license.copyrightOwners>
80+
<package-name>com.mycompany.imagej</package-name> <!-- FIXME: Your project package prefix here -->
81+
<main-class>com.mycompany.imagej.Process_Pixels</main-class> <!-- FIXME: Your project main class here, or delete for none -->
82+
<license.licenseName>cc0</license.licenseName> <!-- FIXME: Your license-maven-plugin license code here -->
83+
<license.copyrightOwners>My Company, Inc.</license.copyrightOwners> <!-- FIXME: Your organization legal entity name here -->
10784
</properties>
10885

10986
<dependencies>

0 commit comments

Comments
 (0)
0