Skip to content

Commit

Permalink
Making changes to the pom file so that it builds properly. (#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
markiantorno authored May 14, 2021
1 parent 0cab181 commit 29e985a
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 10 deletions.
2 changes: 1 addition & 1 deletion org.hl7.fhir.publisher.cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>org.hl7.fhir.publisher</artifactId>
<groupId>org.hl7.fhir.publisher</groupId>
<version>1.1.70</version>
<version>1.1.71-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion org.hl7.fhir.publisher.core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.hl7.fhir.publisher</groupId>
<artifactId>org.hl7.fhir.publisher</artifactId>
<version>1.1.70</version>
<version>1.1.71-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
28 changes: 20 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@
tag and the <core_version> tags below.
-->

<parent>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.core</artifactId>
<version>5.3.12</version>
</parent>
<!-- <parent>-->
<!-- <groupId>ca.uhn.hapi.fhir</groupId>-->
<!-- <artifactId>org.hl7.fhir.core</artifactId>-->
<!-- <version>5.3.14</version>-->
<!-- </parent>-->

<version>1.1.70</version> <!-- See the note above -->
<version>1.1.71-SNAPSHOT</version> <!-- See the note above -->

<properties>
<core_version>5.3.12</core_version>
<core_version>5.3.14</core_version>
<kotlin.version>1.5.0</kotlin.version>
<maven.test.skip>true</maven.test.skip>
</properties>
Expand Down Expand Up @@ -81,7 +81,13 @@
<id>local</id>
<url>file://${basedir}/lib</url>
</repository>
</repositories>
</repositories>

<scm>
<connection>scm:git:git@github.com/HL7/fhir-ig-publisher.git</connection>
<url>scm:git:git@github.com:HL7/fhir-ig-publisher.git</url>
<developerConnection>scm:git:git@github.com:HL7/fhir-ig-publisher.git</developerConnection>
</scm>

<dependencies>
<dependency>
Expand Down Expand Up @@ -126,6 +132,7 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.3</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand All @@ -140,10 +147,12 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.20</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.13</version>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
Expand All @@ -156,16 +165,19 @@
<dependency>
<groupId>com.atlassian.commonmark</groupId>
<artifactId>commonmark</artifactId>
<version>0.12.1</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.atlassian.commonmark</groupId>
<artifactId>commonmark-ext-gfm-tables</artifactId>
<version>0.12.1</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.github.rjeschke</groupId>
<artifactId>txtmark</artifactId>
<version>0.13</version>
<optional>true</optional>
</dependency>

Expand Down

0 comments on commit 29e985a

Please sign in to comment.