mirror of
https://github.com/hapifhir/hapi-fhir.git
synced 2025-02-07 13:38:26 +00:00
* init rev * id to jpa and mongo id * 3444 - replaced methods and constructors of ResourcePersistentId with child constructors and methods * 3444 - replaced methods and constructors of ResourcePersistentId with child constructors and methods * fixed conflicts, pulled from master * fixed code for passing tests successfully * changed PersistentId to Jpa in MdmSearchInterceptor * added the todo comments with questions * added one more question * renamed TODO questions * first pass at converting to generic ResourcePersistentId * fix test * fix test * fix test * make ResourcePersistentId abstract * Generic type MdmLink * Final TODOs * Final TODOs * cleanup * fix test * fix id to string * fix cyclic package dep * add <?> to Base so we can extract interface * Revert "add <?> to Base so we can extract interface" This reverts commit a806f3d2bcef81842917734b04c90cd8df6b7938. * switch to interface * javadoc * replace base with interface * fix test * add generic template to mdmdao * remove unneccessary JpaPid casts * remove unneccessary JpaPid casts * remove unneccessary JpaPid casts * remove unneccessary MongoPid casts * fix test * fix regression * fix compile issues arising from merging master * fix beans * bump version to 6.3.3-SNAPSHOT * change logs * review feedback * review feedback * fixme Co-authored-by: Ken Stevens <ken@smilecdr.com>
41 lines
1.2 KiB
XML
41 lines
1.2 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">
|
|
<parent>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-deployable-pom</artifactId>
|
|
<version>6.3.3-SNAPSHOT</version>
|
|
<relativePath>../hapi-deployable-pom/pom.xml</relativePath>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>hapi-fhir-storage-test-utilities</artifactId>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-storage</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
<artifactId>hapi-fhir-test-utilities</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-params</artifactId>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project>
|