Skip to content
This repository was archived by the owner on Oct 6, 2025. It is now read-only.

Commit da3e156

Browse files
committed
hapi client jar copy to dic/crr bpe plugin folders in docker test setup
1 parent f01be01 commit da3e156

2 files changed

Lines changed: 51 additions & 2 deletions

File tree

codex-process-data-transfer/pom.xml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,23 @@
6262
<outputDirectory>../codex-processes-ap1-docker-test-setup/crr/bpe/app/process</outputDirectory>
6363
</configuration>
6464
</execution>
65+
<execution>
66+
<id>copy-hapi-fhir-client/crr</id>
67+
<phase>package</phase>
68+
<goals>
69+
<goal>copy</goal>
70+
</goals>
71+
<configuration>
72+
<artifactItems>
73+
<artifactItem>
74+
<groupId>ca.uhn.hapi.fhir</groupId>
75+
<artifactId>hapi-fhir-client</artifactId>
76+
<version>${hapi.version}</version>
77+
</artifactItem>
78+
</artifactItems>
79+
<outputDirectory>../codex-processes-ap1-docker-test-setup/crr/bpe/app/plugin</outputDirectory>
80+
</configuration>
81+
</execution>
6582
<execution>
6683
<id>copy-process-plugin-to-docker-test-setup/dic</id>
6784
<phase>package</phase>
@@ -79,6 +96,23 @@
7996
<outputDirectory>../codex-processes-ap1-docker-test-setup/dic/bpe/app/process</outputDirectory>
8097
</configuration>
8198
</execution>
99+
<execution>
100+
<id>copy-hapi-fhir-client/dic</id>
101+
<phase>package</phase>
102+
<goals>
103+
<goal>copy</goal>
104+
</goals>
105+
<configuration>
106+
<artifactItems>
107+
<artifactItem>
108+
<groupId>ca.uhn.hapi.fhir</groupId>
109+
<artifactId>hapi-fhir-client</artifactId>
110+
<version>${hapi.version}</version>
111+
</artifactItem>
112+
</artifactItems>
113+
<outputDirectory>../codex-processes-ap1-docker-test-setup/dic/bpe/app/plugin</outputDirectory>
114+
</configuration>
115+
</execution>
82116
<execution>
83117
<id>copy-process-plugin-to-docker-test-setup/gth</id>
84118
<phase>package</phase>
@@ -110,13 +144,27 @@
110144
</includes>
111145
<followSymlinks>false</followSymlinks>
112146
</fileset>
147+
<fileset>
148+
<directory>../codex-processes-ap1-docker-test-setup/crr/bpe/app/plugin</directory>
149+
<includes>
150+
<include>hapi-fhir-client-${hapi.version}.jar</include>
151+
</includes>
152+
<followSymlinks>false</followSymlinks>
153+
</fileset>
113154
<fileset>
114155
<directory>../codex-processes-ap1-docker-test-setup/dic/bpe/app/process</directory>
115156
<includes>
116157
<include>${project.artifactId}-${project.version}.jar</include>
117158
</includes>
118159
<followSymlinks>false</followSymlinks>
119160
</fileset>
161+
<fileset>
162+
<directory>../codex-processes-ap1-docker-test-setup/dic/bpe/app/plugin</directory>
163+
<includes>
164+
<include>hapi-fhir-client-${hapi.version}.jar</include>
165+
</includes>
166+
<followSymlinks>false</followSymlinks>
167+
</fileset>
120168
<fileset>
121169
<directory>../codex-processes-ap1-docker-test-setup/gth/bpe/app/process</directory>
122170
<includes>

pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
<compileTarget>11</compileTarget>
2121

2222
<main.basedir>${project.basedir}</main.basedir>
23+
<hapi.version>5.1.0</hapi.version>
2324
</properties>
2425

2526
<description>Business processes for the NUM CODEX project (AP1) as plugins for the HiGHmed Data Sharing Framework.</description>
@@ -81,12 +82,12 @@
8182
<dependency>
8283
<groupId>ca.uhn.hapi.fhir</groupId>
8384
<artifactId>hapi-fhir-client</artifactId>
84-
<version>5.1.0</version>
85+
<version>${hapi.version}</version>
8586
</dependency>
8687
<dependency>
8788
<groupId>ca.uhn.hapi.fhir</groupId>
8889
<artifactId>hapi-fhir-structures-r4</artifactId>
89-
<version>5.1.0</version>
90+
<version>${hapi.version}</version>
9091
</dependency>
9192

9293
<!-- hhn rwh -->

0 commit comments

Comments
 (0)