mirror of
https://github.com/hapifhir/hapi-fhir.git
synced 2025-03-03 02:29:28 +00:00
* initial roughout of mdm clear batch job * still roughing out classes * finished first draft of reader * most tests passing now * all tests pass. now FIXMEs * FIXMEs done. Time for regression. * fix test * changelog and docs * fix test * pre-review cleanup * version bump * move spring autowire deps for cdr * move spring autowire deps for cdr * finally got beans working phew * rearrange method calls so persistence module can perform clear operation on its own * Update hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/server_jpa_mdm/mdm_operations.md Co-authored-by: Tadgh <tadgh@cs.toronto.edu> * review feedback * review feedback * Remove inheritance * fix beans Co-authored-by: Tadgh <tadgh@cs.toronto.edu> Co-authored-by: Tadgh <garygrantgraham@gmail.com>
24 lines
708 B
XML
24 lines
708 B
XML
<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</artifactId>
|
|
<version>5.6.0-PRE3-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>hapi-fhir-cli</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>HAPI FHIR - Command Line Client - Base Project</name>
|
|
|
|
<modules>
|
|
<module>hapi-fhir-cli-jpaserver</module>
|
|
<module>hapi-fhir-cli-api</module>
|
|
<module>hapi-fhir-cli-app</module>
|
|
</modules>
|
|
|
|
</project>
|