Skip to content

Commit 3aa9838

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 681accc + 3d93bfc commit 3aa9838

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

org.hl7.fhir.publisher.cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>org.hl7.fhir.publisher</artifactId>
77
<groupId>org.hl7.fhir.publisher</groupId>
8-
<version>2.2.7-SNAPSHOT</version>
8+
<version>2.2.8-SNAPSHOT</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

org.hl7.fhir.publisher.core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.hl7.fhir.publisher</groupId>
77
<artifactId>org.hl7.fhir.publisher</artifactId>
8-
<version>2.2.7-SNAPSHOT</version>
8+
<version>2.2.8-SNAPSHOT</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

org.hl7.fhir.publisher.core/src/main/java/org/hl7/fhir/igtools/renderers/PublicationChecker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ private void checkPackage(List<String> messages, NpmPackage npm) {
222222

223223
private void checkExistingPublication(List<String> messages, NpmPackage npm, PackageList pl, JsonObject pr) {
224224
if (pl != null) {
225-
if (pr.has("movedFrom")) {
225+
if (pr != null && pr.has("movedFrom")) {
226226
check(messages, !npm.name().equals(pl.pid()), "Package ID matches, which is wrong. This package is " + npm.name() + " and the website is also " + pl.pid()+", but it must change" + mkError());
227227
check(messages, !npm.canonical().equals(pl.canonical()), "Package canonical matches, which is wrong. This package canonical is " + npm.canonical() + " and the website has " + pl.canonical()+", but it must change" + mkError());
228228
check(messages, !hasVersion(pl, npm.version()), "Version " + npm.version() + " has already been published" + mkWarning());

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
<groupId>org.hl7.fhir.publisher</groupId>
66
<artifactId>org.hl7.fhir.publisher</artifactId>
7-
<version>2.2.7-SNAPSHOT</version>
7+
<version>2.2.8-SNAPSHOT</version>
88
<packaging>pom</packaging>
99

1010
<properties>
11-
<core_version>6.9.7-SNAPSHOT</core_version>
11+
<core_version>6.9.7</core_version>
1212
<maven_surefire_version>3.0.0-M5</maven_surefire_version>
1313
<apache_poi_version>5.4.1</apache_poi_version>
1414
<commons_io_version>2.17.0</commons_io_version>

0 commit comments

Comments
 (0)