hapi-fhir/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sampl.../pom.xml

65 lines
1.8 KiB
XML
Raw Normal View History

<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-fhir-spring-boot-samples</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>
</parent>
<artifactId>hapi-fhir-spring-boot-sample-client-apache</artifactId>
<packaging>jar</packaging>
<dependencies>
<!-- Compile -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-spring-boot-starter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-dstu3</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-client</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Optional -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<!-- Test -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>