mirror of
https://github.com/hapifhir/hapi-fhir.git
synced 2025-03-09 14:33:32 +00:00
* version bump * Bump to core release 6.0.22 (#5028) * Bump to core release 6.0.16 * Bump to core version 6.0.20 * Fix errors thrown as a result of VersionSpecificWorkerContextWrapper * Bump to core 6.0.22 * Resolve 5126 hfj res ver prov might cause migration error on db that automatically indexes the primary key (#5127) * dropped old index FK_RESVERPROV_RES_PID on RES_PID column before adding IDX_RESVERPROV_RES_PID * added changelog * changed to valid version number * changed to valid version number, need to be ordered by version number... * 5123 - Use DEFAULT partition for server-based requests if none specified (#5124) 5123 - Use DEFAULT partition for server-based requests if none specified * consent remove all suppresses next link in bundle (#5119) * added FIXME with source of issue * added FIXME with root cause * added FIXME with root cause * Providing solution to the issue and removing fixmes. * Providing changelog * auto-formatting. * Adding new test. * Adding a new test for standard paging * let's try this and see if it works...? * fix tests * cleanup to trigger a new run * fixing tests --------- Co-authored-by: Ken Stevens <ken@smilecdr.com> Co-authored-by: peartree <etienne.poirier@smilecdr.com> * 5117 MDM Score for No Match Fields Should Not Be Included in Total Score (#5118) * fix, test, changelog * fix, test, changelog --------- Co-authored-by: justindar <justin.dar@smilecdr.com> * _source search parameter needs to support modifiers (#5095) _source search parameter needs to support modifiers - added support form :contains, :missing, :above modifiers * Fix HFQL docs (#5151) * repository measure refactor * undo bundle edit, add config * embedded library true * undo post of bundle * clear library cache on test * fix sumbit-data test * missing packages from cql * fix test data and test cases for repository api * 3.0.0 clinical reasoning uplift * r4 cql execution provider and tests * fix submitdata provider config * wip cql tests * debugging cql op wip * wip debugging cql * update tests for $cql, fix class names * prep for Pre6 uplift * spotless checks and test fixes * bump to 3.0.0-PRE6 * cleanup * fix version * cleanup * fix exlusions in pom * add in cache invalidation config * search converter bug and test for repository * update searchconverter * version bump, add changelog * remove term config, move IDaoRegistryUser class * Break out dstu3 providers and move config to version folders * CVE-2023-26119 * remove * imports * code review updates --------- Co-authored-by: tadgh <garygrantgraham@gmail.com> Co-authored-by: dotasek <david.otasek@smilecdr.com> Co-authored-by: TynerGjs <132295567+TynerGjs@users.noreply.github.com> Co-authored-by: Steve Corbett <137920358+steve-corbett-smilecdr@users.noreply.github.com> Co-authored-by: Ken Stevens <khstevens@gmail.com> Co-authored-by: Ken Stevens <ken@smilecdr.com> Co-authored-by: peartree <etienne.poirier@smilecdr.com> Co-authored-by: jdar8 <69840459+jdar8@users.noreply.github.com> Co-authored-by: justindar <justin.dar@smilecdr.com> Co-authored-by: volodymyr-korzh <132366313+volodymyr-korzh@users.noreply.github.com> Co-authored-by: Nathan Doef <n.doef@protonmail.com> Co-authored-by: justin.mckelvy <justin.mckelvy@smilecdr.com> Co-authored-by: Brenin Rhodes <brenin@alphora.com>
611 lines
24 KiB
XML
611 lines
24 KiB
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>6.9.7-SNAPSHOT</version>
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>hapi-tinder-test</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>HAPI Tinder Plugin - Test Project</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-base</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-structures-dstu2</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<!-- Because Tinder is a part of the HAPI FHIR build process (it generates a bunch of the actual HAPI structure code), but also uses HAPI FHIR in order to run (e.g. to load ValueSet resources), we keep
|
|
the dependencies for the structures a version behind the main library. This is weird, but it works. -->
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-structures-dstu2.1</artifactId>
|
|
<version>${project.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-base</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</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-structures-hl7org-dstu2</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-validation-resources-dstu2</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-validation-resources-dstu3</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-tinder-plugin</artifactId>
|
|
<version>${project.version}</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-base</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-structures-dstu2</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-structures-dstu2.1</artifactId>
|
|
<version>${project.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-base</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</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-structures-r4</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-structures-r5</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-structures-hl7org-dstu2</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-validation-resources-dstu2</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-validation-resources-dstu3</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-validation-resources-r4</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-validation-resources-r5</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<executions>
|
|
<execution>
|
|
<id>generalstructs</id>
|
|
<goals>
|
|
<goal>generate-structures</goal>
|
|
</goals>
|
|
<configuration>
|
|
<package>ca.uhn.test.realstructs</package>
|
|
<version>dstu2</version>
|
|
<baseResourceNames>
|
|
<baseResourceName>patient</baseResourceName>
|
|
<baseResourceName>valueset</baseResourceName>
|
|
<baseResourceName>organization</baseResourceName>
|
|
<baseResourceName>device</baseResourceName>
|
|
<baseResourceName>location</baseResourceName>
|
|
<baseResourceName>practitioner</baseResourceName>
|
|
<baseResourceName>list</baseResourceName>
|
|
<baseResourceName>auditevent</baseResourceName>
|
|
</baseResourceNames>
|
|
<buildDatatypes>true</buildDatatypes>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>generic_multi_dstu2</id>
|
|
<goals>
|
|
<goal>generate-multi-files</goal>
|
|
</goals>
|
|
<configuration>
|
|
<version>dstu2</version>
|
|
<generateResources>true</generateResources>
|
|
<templateFile>${project.basedir}/src/test/resources/templates/resource_test.vm</templateFile>
|
|
<targetSourceDirectory>${project.build.directory}/generated-sources/tinder</targetSourceDirectory>
|
|
<targetPackage>ca.uhn.test.generic.multi</targetPackage>
|
|
<filenameSuffix>ResourceTest.java</filenameSuffix>
|
|
<includeResources>
|
|
<includeResource>patient</includeResource>
|
|
<includeResource>organization</includeResource>
|
|
</includeResources>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>generic_multi_dstu3</id>
|
|
<goals>
|
|
<goal>generate-multi-files</goal>
|
|
</goals>
|
|
<configuration>
|
|
<version>dstu3</version>
|
|
<generateResources>true</generateResources>
|
|
<resourceSource>model</resourceSource>
|
|
<templateFile>${project.basedir}/src/test/resources/templates/resource_test.vm</templateFile>
|
|
<targetSourceDirectory>${project.build.directory}/generated-sources/tinder</targetSourceDirectory>
|
|
<targetPackage>ca.uhn.test.generic.multi.dstu3</targetPackage>
|
|
<filenameSuffix>ResourceTest.java</filenameSuffix>
|
|
<includeResources>
|
|
<includeResource>patient</includeResource>
|
|
<includeResource>organization</includeResource>
|
|
</includeResources>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>generic_multi_r4</id>
|
|
<goals>
|
|
<goal>generate-multi-files</goal>
|
|
</goals>
|
|
<configuration>
|
|
<version>r4</version>
|
|
<generateResources>true</generateResources>
|
|
<resourceSource>model</resourceSource>
|
|
<templateFile>${project.basedir}/src/test/resources/templates/resource_test.vm</templateFile>
|
|
<targetSourceDirectory>${project.build.directory}/generated-sources/tinder</targetSourceDirectory>
|
|
<targetPackage>ca.uhn.test.generic.multi.r4</targetPackage>
|
|
<filenameSuffix>ResourceTest.java</filenameSuffix>
|
|
<includeResources>
|
|
<includeResource>patient</includeResource>
|
|
<includeResource>organization</includeResource>
|
|
</includeResources>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>generic_multi_r5</id>
|
|
<goals>
|
|
<goal>generate-multi-files</goal>
|
|
</goals>
|
|
<configuration>
|
|
<version>r5</version>
|
|
<generateResources>true</generateResources>
|
|
<resourceSource>model</resourceSource>
|
|
<templateFile>${project.basedir}/src/test/resources/templates/resource_test.vm</templateFile>
|
|
<targetSourceDirectory>${project.build.directory}/generated-sources/tinder</targetSourceDirectory>
|
|
<targetPackage>ca.uhn.test.generic.multi.r5</targetPackage>
|
|
<filenameSuffix>ResourceTest.java</filenameSuffix>
|
|
<includeResources>
|
|
<includeResource>patient</includeResource>
|
|
<includeResource>organization</includeResource>
|
|
</includeResources>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>generic_multi_json</id>
|
|
<goals>
|
|
<goal>generate-multi-files</goal>
|
|
</goals>
|
|
<configuration>
|
|
<version>dstu2</version>
|
|
<generateResources>true</generateResources>
|
|
<resourceSource>spreadsheet</resourceSource>
|
|
<templateFile>${project.basedir}/src/test/resources/templates/resource_map.vm</templateFile>
|
|
<velocityPath>${project.basedir}/src/test/resources/macros</velocityPath>
|
|
<targetResourceDirectory>${project.build.directory}/generated-resources/tinder</targetResourceDirectory>
|
|
<targetFolder>maps</targetFolder>
|
|
<filenameSuffix>_Map.json</filenameSuffix>
|
|
<includeResources>
|
|
<includeResource>patient</includeResource>
|
|
<includeResource>organization</includeResource>
|
|
<includeResource>bundle</includeResource>
|
|
<includeResource>composition</includeResource>
|
|
</includeResources>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>generic_single_dstu2</id>
|
|
<goals>
|
|
<goal>generate-single-file</goal>
|
|
</goals>
|
|
<configuration>
|
|
<version>dstu2</version>
|
|
<generateResources>true</generateResources>
|
|
<templateFile>${project.basedir}/src/test/resources/templates/resource_test_beans_java.vm</templateFile>
|
|
<targetSourceDirectory>${project.build.directory}/generated-sources/tinder</targetSourceDirectory>
|
|
<targetPackage>ca.uhn.test.generic.single</targetPackage>
|
|
<packageBase>ca.uhn.test.generic.multi</packageBase>
|
|
<targetFile>TestConfigDstu2.java</targetFile>
|
|
<includeResources>
|
|
<includeResource>patient</includeResource>
|
|
<includeResource>organization</includeResource>
|
|
</includeResources>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>generic_single_dstu3</id>
|
|
<goals>
|
|
<goal>generate-single-file</goal>
|
|
</goals>
|
|
<configuration>
|
|
<version>dstu3</version>
|
|
<generateResources>true</generateResources>
|
|
<resourceSource>model</resourceSource>
|
|
<templateFile>${project.basedir}/src/test/resources/templates/resource_test_beans_java.vm</templateFile>
|
|
<targetSourceDirectory>${project.build.directory}/generated-sources/tinder</targetSourceDirectory>
|
|
<targetPackage>ca.uhn.test.generic.single</targetPackage>
|
|
<packageBase>ca.uhn.test.generic.multi</packageBase>
|
|
<targetFile>TestConfigDstu3.java</targetFile>
|
|
<includeResources>
|
|
<includeResource>patient</includeResource>
|
|
<includeResource>organization</includeResource>
|
|
</includeResources>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>generic_single_r4</id>
|
|
<goals>
|
|
<goal>generate-single-file</goal>
|
|
</goals>
|
|
<configuration>
|
|
<version>r4</version>
|
|
<generateResources>true</generateResources>
|
|
<resourceSource>model</resourceSource>
|
|
<templateFile>${project.basedir}/src/test/resources/templates/resource_test_beans_java.vm</templateFile>
|
|
<targetSourceDirectory>${project.build.directory}/generated-sources/tinder</targetSourceDirectory>
|
|
<targetPackage>ca.uhn.test.generic.single.r4</targetPackage>
|
|
<packageBase>ca.uhn.test.generic.multi.r4</packageBase>
|
|
<targetFile>TestConfigR4.java</targetFile>
|
|
<includeResources>
|
|
<includeResource>patient</includeResource>
|
|
<includeResource>organization</includeResource>
|
|
</includeResources>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>generic_single_r5</id>
|
|
<goals>
|
|
<goal>generate-single-file</goal>
|
|
</goals>
|
|
<configuration>
|
|
<version>r5</version>
|
|
<generateResources>true</generateResources>
|
|
<resourceSource>model</resourceSource>
|
|
<templateFile>${project.basedir}/src/test/resources/templates/resource_test_beans_java.vm</templateFile>
|
|
<targetSourceDirectory>${project.build.directory}/generated-sources/tinder</targetSourceDirectory>
|
|
<targetPackage>ca.uhn.test.generic.single.r5</targetPackage>
|
|
<packageBase>ca.uhn.test.generic.multi.r5</packageBase>
|
|
<targetFile>TestConfigR5.java</targetFile>
|
|
<includeResources>
|
|
<includeResource>patient</includeResource>
|
|
<includeResource>organization</includeResource>
|
|
</includeResources>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>generic_single_json</id>
|
|
<goals>
|
|
<goal>generate-single-file</goal>
|
|
</goals>
|
|
<configuration>
|
|
<version>dstu2</version>
|
|
<generateDatatypes>true</generateDatatypes>
|
|
<templateFile>${project.basedir}/src/test/resources/templates/composite_map.vm</templateFile>
|
|
<velocityPath>${project.basedir}/src/test/resources/macros</velocityPath>
|
|
<targetResourceDirectory>${project.build.directory}/generated-resources/tinder</targetResourceDirectory>
|
|
<targetFolder>maps</targetFolder>
|
|
<targetFile>Datatypes_Dstu2.json</targetFile>
|
|
<includeResources>
|
|
<includeResource>patient</includeResource>
|
|
<includeResource>organization</includeResource>
|
|
</includeResources>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>testTinderTask</id>
|
|
<phase>generate-sources</phase>
|
|
<goals>
|
|
<goal>run</goal>
|
|
</goals>
|
|
<configuration>
|
|
<target>
|
|
<taskdef name="hapi-tinder" classname="ca.uhn.fhir.tinder.ant.TinderGeneratorTask" classpathref="maven.plugin.classpath" />
|
|
|
|
<hapi-tinder templateFile="${project.basedir}/src/test/resources/templates/resource_test.vm"
|
|
generateResources="true" targetSourceDirectory="${project.build.directory}/generated-sources/tinder"
|
|
targetPackage="ca.uhn.test.ant.multi" filenameSuffix="ResourceTest.java" projectHome="${project.basedir}/.."
|
|
version="dstu2" includeResources="patient,organization" />
|
|
|
|
<hapi-tinder templateFile="${project.basedir}/src/test/resources/templates/resource_test.vm" resourceSource="model"
|
|
generateResources="true" targetSourceDirectory="${project.build.directory}/generated-sources/tinder"
|
|
targetPackage="ca.uhn.test.ant.multi.dstu3" filenameSuffix="ResourceTest.java" projectHome="${project.basedir}/.."
|
|
version="dstu3" includeResources="patient,organization" />
|
|
|
|
<hapi-tinder templateFile="${project.basedir}/src/test/resources/templates/resource_test.vm" resourceSource="model"
|
|
generateResources="true" targetSourceDirectory="${project.build.directory}/generated-sources/tinder"
|
|
targetPackage="ca.uhn.test.ant.multi.r4" filenameSuffix="ResourceTest.java" projectHome="${project.basedir}/.."
|
|
version="r4" includeResources="patient,organization" />
|
|
|
|
<hapi-tinder templateFile="${project.basedir}/src/test/resources/templates/resource_test.vm" resourceSource="model"
|
|
generateResources="true" targetSourceDirectory="${project.build.directory}/generated-sources/tinder"
|
|
targetPackage="ca.uhn.test.ant.multi.r5" filenameSuffix="ResourceTest.java" projectHome="${project.basedir}/.."
|
|
version="r5" includeResources="patient,organization" />
|
|
|
|
<hapi-tinder templateFile="${project.basedir}/src/test/resources/templates/resource_test_beans_java.vm"
|
|
generateResources="true" targetSourceDirectory="${project.build.directory}/generated-sources/tinder"
|
|
targetFile="TestConfigDstu2.java" targetPackage="ca.uhn.test.ant.single" packageBase="ca.uhn.test.ant.multi"
|
|
projectHome="${project.basedir}/.." version="dstu2" includeResources="patient,organization" />
|
|
|
|
<hapi-tinder templateFile="${project.basedir}/src/test/resources/templates/resource_test_beans_java.vm" resourceSource="model"
|
|
generateResources="true" targetSourceDirectory="${project.build.directory}/generated-sources/tinder"
|
|
targetFile="TestConfigDstu3.java" targetPackage="ca.uhn.test.ant.single" packageBase="ca.uhn.test.ant.multi.dstu3"
|
|
projectHome="${project.basedir}/.." version="dstu3" includeResources="patient,organization" />
|
|
|
|
<hapi-tinder templateFile="${project.basedir}/src/test/resources/templates/resource_test_beans_java.vm" resourceSource="model"
|
|
generateResources="true" targetSourceDirectory="${project.build.directory}/generated-sources/tinder"
|
|
targetFile="TestConfigR4.java" targetPackage="ca.uhn.test.ant.single" packageBase="ca.uhn.test.ant.multi.r4"
|
|
projectHome="${project.basedir}/.." version="r4" includeResources="patient,organization" />
|
|
|
|
<hapi-tinder templateFile="${project.basedir}/src/test/resources/templates/resource_test_beans_java.vm" resourceSource="model"
|
|
generateResources="true" targetSourceDirectory="${project.build.directory}/generated-sources/tinder"
|
|
targetFile="TestConfigR5.java" targetPackage="ca.uhn.test.ant.single" packageBase="ca.uhn.test.ant.multi.r5"
|
|
projectHome="${project.basedir}/.." version="r5" includeResources="patient,organization" />
|
|
|
|
</target>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-base</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-structures-dstu2</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-structures-dstu2.1</artifactId>
|
|
<version>${project.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-base</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</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-structures-r4</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-structures-r5</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-structures-hl7org-dstu2</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-validation-resources-dstu2</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-validation-resources-dstu3</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-validation-resources-r4</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-validation-resources-r5</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-tinder-plugin</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>add-source</id>
|
|
<phase>generate-sources</phase>
|
|
<goals>
|
|
<goal>add-source</goal>
|
|
</goals>
|
|
<configuration>
|
|
<sources>
|
|
<source>target/generated-sources/tinder</source>
|
|
</sources>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. -->
|
|
<plugin>
|
|
<groupId>org.eclipse.m2e</groupId>
|
|
<artifactId>lifecycle-mapping</artifactId>
|
|
<version>1.0.0</version>
|
|
<configuration>
|
|
<lifecycleMappingMetadata>
|
|
<pluginExecutions>
|
|
<pluginExecution>
|
|
<pluginExecutionFilter>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-tinder-plugin</artifactId>
|
|
<versionRange>[0.4-SNAPSHOT,)</versionRange>
|
|
<goals>
|
|
<goal>generate-structures</goal>
|
|
</goals>
|
|
</pluginExecutionFilter>
|
|
<action>
|
|
<ignore></ignore>
|
|
</action>
|
|
</pluginExecution>
|
|
<pluginExecution>
|
|
<pluginExecutionFilter>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-tinder-plugin</artifactId>
|
|
<versionRange>[0.4-SNAPSHOT,)</versionRange>
|
|
<goals>
|
|
<goal>generate-multi-files</goal>
|
|
</goals>
|
|
</pluginExecutionFilter>
|
|
<action>
|
|
<ignore></ignore>
|
|
</action>
|
|
</pluginExecution>
|
|
<pluginExecution>
|
|
<pluginExecutionFilter>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-tinder-plugin</artifactId>
|
|
<versionRange>[0.4-SNAPSHOT,)</versionRange>
|
|
<goals>
|
|
<goal>generate-single-file</goal>
|
|
</goals>
|
|
</pluginExecutionFilter>
|
|
<action>
|
|
<ignore></ignore>
|
|
</action>
|
|
</pluginExecution>
|
|
</pluginExecutions>
|
|
</lifecycleMappingMetadata>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
<resources>
|
|
<resource>
|
|
<directory>${basedir}/src/main/resources</directory>
|
|
</resource>
|
|
<resource>
|
|
<directory>${basedir}/target/generated-resources/tinder</directory>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
<profiles>
|
|
<!-- For releases, we need to generate javadoc and sources JAR -->
|
|
<profile>
|
|
<id>release</id>
|
|
<activation>
|
|
<activeByDefault>false</activeByDefault>
|
|
<property>
|
|
<name>deployToSonatype</name>
|
|
</property>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>3.2.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar-no-fork</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>3.4.0</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-javadoc</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|