Skip to content

Commit d52961b

Browse files
committed
Update parent to pom-scijava 12.0.0
This version is a major update to the SciJava Bill of Materials; see: http://forum.imagej.net/t/split-boms-from-parent-configuration/2563
1 parent d17d2ca commit d52961b

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

pom.xml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.scijava</groupId>
77
<artifactId>pom-scijava</artifactId>
8-
<version>11.2.1</version>
8+
<version>12.0.0</version>
99
<relativePath />
1010
</parent>
1111

@@ -16,6 +16,10 @@
1616
<description>SciJava Common is a shared library for SciJava software. It provides a plugin framework, with an extensible mechanism for service discovery, backed by its own annotation processor, so that plugins can be loaded dynamically. It is used by downstream projects in the SciJava ecosystem, such as ImageJ and SCIFIO.</description>
1717
<url>http://scijava.org/</url>
1818
<inceptionYear>2009</inceptionYear>
19+
<organization>
20+
<name>SciJava</name>
21+
<url>http://www.scijava.org/</url>
22+
</organization>
1923
<licenses>
2024
<license>
2125
<name>Simplified BSD License</name>
@@ -91,6 +95,16 @@
9195
</contributor>
9296
</contributors>
9397

98+
<mailingLists>
99+
<mailingList>
100+
<name>SciJava</name>
101+
<subscribe>https://groups.google.com/group/scijava</subscribe>
102+
<unsubscribe>https://groups.google.com/group/scijava</unsubscribe>
103+
<post>scijava@googlegroups.com</post>
104+
<archive>https://groups.google.com/group/scijava</archive>
105+
</mailingList>
106+
</mailingLists>
107+
94108
<scm>
95109
<connection>scm:git:git://github.com/scijava/scijava-common</connection>
96110
<developerConnection>scm:git:git@github.com:scijava/scijava-common</developerConnection>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ public void testAccessors() throws ParserConfigurationException,
103103
final String issueManagementURL = pom.getIssueManagementURL();
104104
assertEquals("https://github.com/scijava/scijava-common/issues",
105105
issueManagementURL);
106-
assertNull(pom.getOrganizationName());
107-
assertNull(pom.getOrganizationURL());
106+
assertEquals("SciJava", pom.getOrganizationName());
107+
assertEquals("http://www.scijava.org/", pom.getOrganizationURL());
108108
assertTrue(pom.getPath().endsWith("pom.xml"));
109109
assertTrue(pom.getProjectDescription().startsWith(
110110
"SciJava Common is a shared library for SciJava software."));

0 commit comments

Comments
 (0)