mirror of
https://github.com/hapifhir/hapi-fhir.git
synced 2025-02-13 08:25:00 +00:00
* rename hapi-fhir-jpaserver-migrate to hapi-fhir-sql-migrate and move hapi-tasks into jpaserver-persistence * rename hapi-fhir-jpaserver-api to hapi-fhir-storage-api * move bulk import apis * create hapi-fhir-jpa * create hapi-fhir-jpa * move CircularQueueCaptureQueriesListener to japi-fhir-jpa * move mdm logs to storage-api * move gziputil to storage-api * move quartz scheduling to hapi-fhir-jpa * move default subscription channel factory to storage-api * consolidated batch constants * correct accidental Logs change * remove dependency of cdr-api on cdr-persistence * fix javadoc * pom descriptions * review feedback
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-PRE6-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>
|