mirror of
https://github.com/hapifhir/hapi-fhir.git
synced 2025-02-08 22:14:50 +00:00
23b593aa17
* breaking up package installer and package config * breaking out parsing of resources * wrong nullable * added an integration test * adding a changelog * added a few minor tests * review fixes * unit test fixes * fixing code checkstyle * moving fetching local package data to package loader svc * updating the method name * splitting the fhirversion parsing * updating table creation task for pretty printing and use in RTE * adding foreign keys * Adding mroe info * minor prettiness changes * fixing fk generation * minor changes * update version Co-authored-by: leif stawnyczy <leifstawnyczy@leifs-mbp.home> Co-authored-by: leif stawnyczy <leifstawnyczy@leifs-MacBook-Pro.local>
36 lines
1.1 KiB
XML
36 lines
1.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>
|
|
<artifactId>hapi-fhir</artifactId>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<version>6.3.9-SNAPSHOT</version>
|
|
<relativePath>../../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<!-- This module exists to facilitate running tests with caffeine and guava.
|
|
By changing the dependency below, all projects switch to the preferred lib -->
|
|
<artifactId>hapi-fhir-caching-testing</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>HAPI FHIR - ServiceLoaders - Caching Testing</name>
|
|
|
|
<dependencies>
|
|
<!-- Change here (and run mvn install, mvn test -U) to run test cases with different cache library -->
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-caching-caffeine</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|