2019-01-13 15:33:14 -05:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2019-01-29 16:56:18 -05:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2019-01-13 15:33:14 -05:00
|
|
|
|
2019-01-29 16:56:18 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>org.hl7.fhir.core</artifactId>
|
2019-01-31 14:11:47 -05:00
|
|
|
<version>3.7.3-SNAPSHOT</version>
|
2019-01-29 16:56:18 -05:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
2019-01-13 15:33:14 -05:00
|
|
|
|
2019-01-29 16:56:18 -05:00
|
|
|
<artifactId>org.hl7.fhir.utilities</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
2019-01-13 15:33:14 -05:00
|
|
|
|
2019-01-29 16:56:18 -05:00
|
|
|
<dependencies>
|
2019-01-13 15:33:14 -05:00
|
|
|
|
2019-01-29 16:56:18 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-base</artifactId>
|
|
|
|
</dependency>
|
2019-01-13 15:33:14 -05:00
|
|
|
|
2019-01-29 16:56:18 -05:00
|
|
|
<!-- Commons -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-compress</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2019-01-13 15:33:14 -05:00
|
|
|
|
2019-01-29 16:56:18 -05:00
|
|
|
<!-- Markdown Utilities -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.atlassian.commonmark</groupId>
|
|
|
|
<artifactId>commonmark</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.atlassian.commonmark</groupId>
|
|
|
|
<artifactId>commonmark-ext-gfm-tables</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.rjeschke</groupId>
|
|
|
|
<artifactId>txtmark</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2019-01-13 15:33:14 -05:00
|
|
|
|
2019-01-29 16:56:18 -05:00
|
|
|
<!-- XML Utilities -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.saxon</groupId>
|
|
|
|
<artifactId>Saxon-HE</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>xpp3</groupId>
|
|
|
|
<artifactId>xpp3</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>xpp3</groupId>
|
|
|
|
<artifactId>xpp3_xpath</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2019-01-13 15:33:14 -05:00
|
|
|
|
2019-01-29 16:56:18 -05:00
|
|
|
</dependencies>
|
2019-01-13 15:33:14 -05:00
|
|
|
|
|
|
|
</project>
|