mirror of
https://github.com/hapifhir/hapi-fhir.git
synced 2025-02-05 20:48:15 +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>
33 lines
1007 B
XML
33 lines
1007 B
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-spring-boot</artifactId>
|
|
<version>6.3.3-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>hapi-fhir-spring-boot-samples</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
<module>hapi-fhir-spring-boot-sample-client-apache</module>
|
|
<module>hapi-fhir-spring-boot-sample-client-okhttp</module>
|
|
<module>hapi-fhir-spring-boot-sample-server-jersey</module>
|
|
</modules>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
<version>${spring_boot_version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
</project>
|