Skip to content

Commit 4bec714

Browse files
committed
Add explicit dependency from fhir-server to fhir-profile
When running via `mvn liberty:dev -f fhir-server-webapp` I was seeing some classloading issues with ProfileSupport. I think its related to the fact that `fhir-server` has a direct dependency on `fhir-profile` but it wasn't listed in the pom. Signed-off-by: Lee Surprenant <lmsurpre@us.ibm.com>
1 parent 59c7390 commit 4bec714

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

fhir-server/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,11 @@
6565
<artifactId>fhir-server-spi</artifactId>
6666
<version>${project.version}</version>
6767
</dependency>
68+
<dependency>
69+
<groupId>${project.groupId}</groupId>
70+
<artifactId>fhir-profile</artifactId>
71+
<version>${project.version}</version>
72+
</dependency>
6873
<dependency>
6974
<groupId>${project.groupId}</groupId>
7075
<artifactId>fhir-validation</artifactId>

0 commit comments

Comments
 (0)