55 lines
1.5 KiB
XML
55 lines
1.5 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>1.0-SNAPSHOT</version>
|
||
|
<relativePath>../pom.xml</relativePath>
|
||
|
</parent>
|
||
|
|
||
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
||
|
<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>1.0-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
||
|
<artifactId>hapi-tinder-plugin</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>generate</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
<configuration>
|
||
|
<package>ca.uhn.tindertest</package>
|
||
|
<baseResourceNames>
|
||
|
<baseResourceName>patient</baseResourceName>
|
||
|
<baseResourceName>valueset</baseResourceName>
|
||
|
<baseResourceName>organization</baseResourceName>
|
||
|
<baseResourceName>device</baseResourceName>
|
||
|
<baseResourceName>location</baseResourceName>
|
||
|
<baseResourceName>practitioner</baseResourceName>
|
||
|
</baseResourceNames>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|