hapi-fhir/hapi-fhir-validation-resour.../pom.xml

51 lines
1.8 KiB
XML
Raw Normal View History

2015-08-31 08:20:24 -04: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>
<artifactId>hapi-deployable-pom</artifactId>
2579 partitioned support for mdm (#3485) * committed changes discussed at tasking * Changed the subscription message to store the request partition * modified mdm subscription loader to create a cross partition subscription in the default partition if multitenancy is enabled * Fix errors when running Multitenant IT for mdm * Added partition id to mdm golden resource search and creating/updating golden resource * added partition id column to the mdm link table * Added partition id of the source resource to partition id column of the mdm link table * broken build * working -links, missing hapi tests * Fixed the mdm link db table due to feedback * added IT for create link mdm operation, also added changes to pass the IT * Fixed test for create mdm links, added test for update mdm link on partitioned server * changed mdmLink search from searchbyExample to criteriaBuilder, added partitionHelperSvc to determine partition * added test for merge golden resource and search golden resource on partitioned server * added unit test for not duplicate on partitioned and non-partitioned server * added criteriabuilder search and tests * code cleanup * added partition support to -merge-golden-resources operation * test cleanup * fixed operations with multitenancy * added test for mdm clear operation * added waiting for batch job to finish in mdm clear operation test * added query to dao to support partitioned server for mdm clear operation * resolve mistake from merge conflict * added mdm-submit operations, also fixed paging for -query * added partitionIds constant * fixed build issue where there was no Code.msg in mdm partition exceptions * code review fixes * fix broken test, also fix a bug where query link could not query by linkSource properly * fix test stubbing * bump hapi version to 6.0.0-PRE10-SNAPSHOT Co-authored-by: Ken Stevens <khstevens@gmail.com> Co-authored-by: Steven Li <steven@smilecdr.com> Co-authored-by: Long Ma <long@smilecdr.com>
2022-04-06 15:48:30 -04:00
<version>6.0.0-PRE10-SNAPSHOT</version>
2015-08-31 08:20:24 -04:00
<relativePath>../hapi-deployable-pom/pom.xml</relativePath>
</parent>
2015-09-03 08:07:43 -04:00
<artifactId>hapi-fhir-validation-resources-dstu2</artifactId>
<packaging>bundle</packaging>
2015-08-31 08:20:24 -04:00
2015-11-29 11:43:09 -05:00
<name>HAPI FHIR - Validation Resources (DSTU2)</name>
2015-08-31 08:20:24 -04:00
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<_nouses>true</_nouses>
<_removeheaders>Built-By, Include-Resource, Private-Package, Require-Capability</_removeheaders>
<!-- No need to disable normal OSGi class loading
<Fragment-Host>
ca.uhn.hapi.fhir.hapi-fhir-base
</Fragment-Host>
-->
<!-- maven-bundle-plugin does not generate
exports for resource packages -->
<Export-Package>
org.hl7.fhir.instance.model.profile;version="${project.version}",
org.hl7.fhir.instance.model.schema;version="${project.version}",
org.hl7.fhir.instance.model.valueset;version="${project.version}"
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
2015-08-31 08:20:24 -04:00
</build>
</project>