hapi-fhir/hapi-fhir-android/pom.xml

163 lines
4.1 KiB
XML
Raw Normal View History

2015-02-11 08:52:46 -05:00
<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>
2017-09-01 06:39:55 -04:00
<artifactId>hapi-deployable-pom</artifactId>
Update Clinical Reasoning to 3.13.0 (#6358) * Update Clinical Reasoning to 3.12.0 * Update to 3.13.0 * add stub for new not document parameter * Add new client Timezone header and enhance JsonUtil to handle ZonedDateTime. * Add StringTimePeriodHandler and test. Add new code to DateUtils and new test class. Inject StringTimePeriodHandler into MeasureOperationsProvider and CareGapsOperationProvider. Change CareGapsOperationProvider to take String params instead of IPrimitiveType<Date>. * Remove old LibraryEvaluationOperationProvider * Fix test * Fix tests * Add $data-requirement parameters to docs * Update docs for new measures timezone header. * Add prefetchData parameter to $apply doc * Add changelog * Fix test * Update snapshot version * Add new $extract parameters to docs * Remove old test * fix test and properties for care-gaps * Fix dstu3 config * remove property for fhirserverurl * update upgrade.md doc * fix formatting of upgrade doc * comment on measureidentifier param * nonDocument parameter inclusion * java doc on care-gaps * No longer dead code. * Spotless. * Change CareGapsOperationProvider to R4 BooleanType. * Update to release * change log update * change log edit * cleanup * Use existing bean * spotless * Ensure CollectDataOperationProvider uses StringTimePeriodHandler to convert periods. * Spotless. * Add tests for id * Update hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_6_0/upgrade.md Co-authored-by: Tadgh <garygrantgraham@gmail.com> * Update hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_6_0/upgrade.md Co-authored-by: Tadgh <garygrantgraham@gmail.com> * Update hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_6_0/upgrade.md Co-authored-by: Tadgh <garygrantgraham@gmail.com> * cleanup and comments * Update hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/clinical_reasoning/measures.md Implement code reviewer suggestion on timezone docs Co-authored-by: Tadgh <garygrantgraham@gmail.com> * Update hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/clinical_reasoning/measures.md Implement code reviewer suggestion on timezone docs Co-authored-by: Tadgh <garygrantgraham@gmail.com> * Update hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/clinical_reasoning/measures.md Implement code reviewer suggestion on timezone docs Co-authored-by: Tadgh <garygrantgraham@gmail.com> * Update hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/clinical_reasoning/measures.md Implement code reviewer suggestion on timezone docs Co-authored-by: Tadgh <garygrantgraham@gmail.com> * Code review feedback: Add logging for StringTimePeriodHandler. * Spotless. * cleanup * Code review feedback: measures.md style changes. Change code 2560 to 2561. * Change error code. --------- Co-authored-by: Luke deGruchy <luke.degruchy@smiledigitalhealth.com> Co-authored-by: Justin McKelvy <60718638+Capt-Mac@users.noreply.github.com> Co-authored-by: Tadgh <garygrantgraham@gmail.com> Co-authored-by: Luke deGruchy <luke.degruchy@smilecdr.com>
2024-10-17 08:38:42 -04:00
<version>7.5.2-SNAPSHOT</version>
2017-09-01 06:39:55 -04:00
<relativePath>../hapi-deployable-pom/pom.xml</relativePath>
2015-02-11 08:52:46 -05:00
</parent>
<artifactId>hapi-fhir-android</artifactId>
<packaging>jar</packaging>
2015-02-16 23:02:50 -05:00
<name>HAPI FHIR - Android</name>
2015-02-11 08:52:46 -05:00
<dependencies>
2016-01-06 14:02:20 -05:00
<!--
This is here, at the top, for the unit tests because otherwise the
logger spews out all kinds of junk during unit tests
-->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
2015-02-11 08:52:46 -05:00
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-base</artifactId>
<version>${project.version}</version>
2015-02-11 08:52:46 -05:00
<exclusions>
<exclusion>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</exclusion>
<exclusion>
2020-11-27 19:49:06 -05:00
<groupId>com.fasterxml.woodstox</groupId>
<artifactId>woodstox-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-client</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</exclusion>
2015-02-11 08:52:46 -05:00
</exclusions>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-dstu2</artifactId>
<version>${project.version}</version>
<optional>true</optional>
2015-02-11 08:52:46 -05:00
</dependency>
2016-02-03 08:35:05 -05:00
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-dstu3</artifactId>
<version>${project.version}</version>
2016-02-03 08:35:05 -05:00
<optional>true</optional>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-client-okhttp</artifactId>
<version>${project.version}</version>
</dependency>
2016-10-14 17:34:55 -04:00
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
2015-02-11 08:52:46 -05:00
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-android</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
2015-02-16 14:17:29 -05:00
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
2015-08-09 11:18:04 -04:00
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
2015-02-11 08:52:46 -05:00
</dependencies>
<build>
<plugins>
2015-02-16 14:17:29 -05:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
2021-01-24 12:09:50 -05:00
<classpathDependencyExcludes>
<dependencyExclude>org.slf4j:slf4j-android</dependencyExclude>
</classpathDependencyExcludes>
2015-02-16 14:17:29 -05:00
</configuration>
<executions>
<execution>
<id>it</id>
2015-02-16 14:17:29 -05:00
<goals>
<goal>integration-test</goal>
2021-01-24 12:09:50 -05:00
<goal>verify</goal>
2015-02-16 14:17:29 -05:00
</goals>
<configuration>
<includes>
<include>**/*IT.java</include>
</includes>
</configuration>
2015-02-16 14:17:29 -05:00
</execution>
</executions>
</plugin>
<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>
2015-02-11 08:52:46 -05:00
</plugins>
</build>
2015-03-16 10:17:49 -04:00
<profiles>
<profile>
<id>CI</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
2015-03-16 10:17:49 -04:00
</profiles>
2015-02-11 08:52:46 -05:00
</project>