|
12 | 12 | <relativePath />
|
13 | 13 | </parent>
|
14 | 14 |
|
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 --> |
17 | 17 | <version>0.1.0-SNAPSHOT</version>
|
18 | 18 |
|
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 --> |
23 | 23 | <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 --> |
26 | 26 | </organization>
|
27 | 27 | <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> |
30 | 31 | <distribution>repo</distribution>
|
31 | 32 | </license>
|
32 | 33 | </licenses>
|
33 | 34 |
|
34 | 35 | <developers>
|
| 36 | + <!-- See https://imagej.net/Team --> |
35 | 37 | <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 --> |
39 | 41 | <roles>
|
| 42 | + <role>founder</role> |
40 | 43 | <role>lead</role>
|
41 | 44 | <role>developer</role>
|
42 | 45 | <role>debugger</role>
|
|
48 | 51 | </developers>
|
49 | 52 | <contributors>
|
50 | 53 | <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> |
78 | 55 | </contributor>
|
79 | 56 | </contributors>
|
80 | 57 |
|
81 | 58 | <mailingLists>
|
82 | 59 | <mailingList>
|
83 | 60 | <name>Image.sc Forum</name>
|
84 |
| - <archive>https://forum.image.sc/tags/imagej</archive> |
| 61 | + <archive>https://forum.image.sc/tag/imagej</archive> |
85 | 62 | </mailingList>
|
86 | 63 | </mailingLists>
|
87 | 64 |
|
|
100 | 77 | </ciManagement>
|
101 | 78 |
|
102 | 79 | <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 --> |
107 | 84 | </properties>
|
108 | 85 |
|
109 | 86 | <dependencies>
|
|
0 commit comments