<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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> <parent> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-deployable-pom</artifactId> <version>5.2.0-SNAPSHOT</version> <relativePath>../hapi-deployable-pom/pom.xml</relativePath> </parent> <artifactId>hapi-fhir-validation</artifactId> <packaging>bundle</packaging> <name>HAPI FHIR - Validation</name> <dependencies> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-base</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-converter</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>org.hl7.fhir.validation</artifactId> <version>${fhir_core_version}</version> <exclusions> <exclusion> <groupId>info.cqframework</groupId> <artifactId>elm</artifactId> </exclusion> <exclusion> <groupId>info.cqframework</groupId> <artifactId>cql-to-elm</artifactId> </exclusion> <exclusion> <groupId>info.cqframework</groupId> <artifactId>quick</artifactId> </exclusion> <exclusion> <groupId>info.cqframework</groupId> <artifactId>qdm</artifactId> </exclusion> <exclusion> <groupId>info.cqframework</groupId> <artifactId>cql</artifactId> </exclusion> <exclusion> <groupId>info.cqframework</groupId> <artifactId>model</artifactId> </exclusion> <exclusion> <groupId>io.javalin</groupId> <artifactId>javalin</artifactId> </exclusion> <exclusion> <groupId>junit</groupId> <artifactId>junit</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>org.hl7.fhir.utilities</artifactId> <version>${fhir_core_version}</version> </dependency> <dependency> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </dependency> <!-- Note: As of HAPI FHIR 5.0.0 we now use Jackson for JSON parsing, but the validator still uses GSON so it is a dependency here --> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> <!-- Optional dependencies from RI codebase --> <!-- <dependency> <groupId>es.nitaur.markdown</groupId> <artifactId>txtmark</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.antlr</groupId> <artifactId>ST4</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>xpp3</groupId> <artifactId>xpp3</artifactId> <optional>true</optional> </dependency> --> <!-- Optional dependencies on the various versions of FHIR --> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-structures-dstu2</artifactId> <version>${project.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-validation-resources-dstu2</artifactId> <version>${project.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-structures-hl7org-dstu2</artifactId> <version>${project.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-structures-dstu2.1</artifactId> <version>${project.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-validation-resources-dstu2.1</artifactId> <version>${project.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-structures-dstu3</artifactId> <version>${project.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-validation-resources-dstu3</artifactId> <version>${project.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-structures-r4</artifactId> <version>${project.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-validation-resources-r4</artifactId> <version>${project.version}</version> <optional>true</optional> </dependency> <!-- The validator and snapshot generators require R5 structures independent of which version is being validated --> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-structures-r5</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-validation-resources-r5</artifactId> <version>${project.version}</version> <optional>true</optional> </dependency> <!-- Test Deps --> <dependency> <groupId>org.codehaus.woodstox</groupId> <artifactId>woodstox-core-asl</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-server</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-client</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlets</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlet</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-util</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-webapp</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-http</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-test-utilities</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <!-- Dependencies for Schematron --> <dependency> <groupId>com.helger</groupId> <artifactId>ph-schematron</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>javax.activation</groupId> <artifactId>javax.activation-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <scope>test</scope> </dependency> <!--<dependency>--> <!--<groupId>com.sun.xml.bind</groupId>--> <!--<artifactId>jaxb-core</artifactId>--> <!--<scope>test</scope>--> <!--</dependency>--> <!--<dependency>--> <!--<groupId>com.sun.xml.bind</groupId>--> <!--<artifactId>jaxb-impl</artifactId>--> <!--<scope>test</scope>--> <!--</dependency>--> <dependency> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-runtime</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <show>public</show> </configuration> </plugin> </plugins> </reporting> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <configuration> <dumpOnExit>true</dumpOnExit> </configuration> <executions> <execution> <id>default-prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>@{argLine} ${surefire_jvm_args}</argLine> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <!-- Don't add UHN licenses to RI structures --> <skipUpdateLicense>true</skipUpdateLicense> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <fork>true</fork> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Fragment-Host> ca.uhn.hapi.fhir.hapi-fhir-base </Fragment-Host> </instructions> </configuration> </plugin> </plugins> </build> </project>