Skip to content

Commit 125f1fd

Browse files
committed
POM: Update developers and contributors
See: http://imagej.net/Team
1 parent 6961aed commit 125f1fd

File tree

2 files changed

+39
-41
lines changed

2 files changed

+39
-41
lines changed

pom.xml

Lines changed: 37 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,12 @@
3333
<organization>UW-Madison LOCI</organization>
3434
<organizationUrl>http://loci.wisc.edu/</organizationUrl>
3535
<roles>
36-
<role>architect</role>
37-
<role>developer</role>
38-
</roles>
39-
<timezone>-6</timezone>
40-
</developer>
41-
<developer>
42-
<id>dscho</id>
43-
<name>Johannes Schindelin</name>
44-
<email>schindelin@wisc.edu</email>
45-
<url>http://loci.wisc.edu/people/johannes-schindelin</url>
46-
<organization>UW-Madison LOCI</organization>
47-
<organizationUrl>http://loci.wisc.edu/</organizationUrl>
48-
<roles>
49-
<role>architect</role>
36+
<role>lead</role>
5037
<role>developer</role>
38+
<role>debugger</role>
39+
<role>reviewer</role>
40+
<role>support</role>
41+
<role>maintainer</role>
5142
</roles>
5243
<timezone>-6</timezone>
5344
</developer>
@@ -59,46 +50,54 @@
5950
<organization>UW-Madison LOCI</organization>
6051
<organizationUrl>http://loci.wisc.edu/</organizationUrl>
6152
<roles>
53+
<role>lead</role>
6254
<role>developer</role>
55+
<role>debugger</role>
56+
<role>reviewer</role>
57+
<role>support</role>
58+
<role>maintainer</role>
6359
</roles>
6460
<timezone>-6</timezone>
6561
</developer>
6662
</developers>
6763

6864
<contributors>
65+
<contributor>
66+
<name>Johannes Schindelin</name>
67+
<url>http://imagej.net/User:Schindelin</url>
68+
<properties><id>dscho</id></properties>
69+
</contributor>
6970
<contributor>
7071
<name>Barry DeZonia</name>
71-
<url>http://loci.wisc.edu/people/barry-dezonia</url>
72-
<organization>UW-Madison LOCI</organization>
73-
<organizationUrl>http://loci.wisc.edu/</organizationUrl>
74-
<roles>
75-
<role>developer</role>
76-
</roles>
77-
<timezone>-6</timezone>
72+
<url>http://imagej.net/User:Bdezonia</url>
73+
<properties><id>bdezonia</id></properties>
7874
</contributor>
7975
<contributor>
8076
<name>Lee Kamentsky</name>
81-
<email>leek@broadinstitute.org</email>
82-
<url>http://www.broadinstitute.org/~leek/</url>
83-
<organization>Broad Institute of MIT and Harvard</organization>
84-
<organizationUrl>http://www.broadinstitute.org/</organizationUrl>
85-
<roles>
86-
<role>developer</role>
87-
</roles>
88-
<timezone>-5</timezone>
77+
<url>http://imagej.net/User:Leek</url>
78+
<properties><id>LeeKamentsky</id></properties>
8979
</contributor>
9080
<contributor>
9181
<name>Christian Dietz</name>
92-
<email>christian.dietz@uni-konstanz.de</email>
93-
<url>http://www.informatik.uni-konstanz.de/berthold/mitglieder/christian-dietz/</url>
94-
<organization>University of Konstanz</organization>
95-
<organizationUrl>http://www.informatik.uni-konstanz.de/</organizationUrl>
96-
<roles>
97-
<role>developer</role>
98-
</roles>
99-
<timezone>+1</timezone>
82+
<url>http://imagej.net/User:Dietzc</url>
83+
<properties><id>dietzc</id></properties>
84+
</contributor>
85+
<contributor>
86+
<name>Gabriel Einsdorf</name>
87+
<properties><id>gab1one</id></properties>
88+
</contributor>
89+
<contributor>
90+
<name>Jonathan Hale</name>
91+
<properties><id>Squareys</id></properties>
92+
</contributor>
93+
<contributor>
94+
<name>Kevin Mader</name>
95+
<properties><id>kmader</id></properties>
96+
</contributor>
97+
<contributor>
98+
<name>Jay Warrick</name>
99+
<properties><id>jaywarrick</id></properties>
100100
</contributor>
101-
<contributor><name>Jay Warrick</name></contributor>
102101
</contributors>
103102

104103
<scm>

src/test/java/org/scijava/util/POMTest.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,9 @@ public void testElements() throws ParserConfigurationException,
137137
final POM pom = new POM(new File("pom.xml"));
138138
final ArrayList<Element> developers =
139139
pom.elements("//project/developers/developer");
140-
assertEquals(3, developers.size());
140+
assertEquals(2, developers.size());
141141
assertEquals("ctrueden", XML.cdata(developers.get(0), "id"));
142-
assertEquals("dscho", XML.cdata(developers.get(1), "id"));
143-
assertEquals("hinerm", XML.cdata(developers.get(2), "id"));
142+
assertEquals("hinerm", XML.cdata(developers.get(1), "id"));
144143
}
145144

146145
}

0 commit comments

Comments
 (0)