Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

Commit

Permalink
Fixed the build order for multi-thread builds
Browse files Browse the repository at this point in the history
  • Loading branch information
yuflyud committed Oct 8, 2021
1 parent 962f9ad commit 87285a9
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
10 changes: 10 additions & 0 deletions cbo/app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,16 @@
<artifactId>fhir-common</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Explicitly specify UI dependency so that the build order is correct.
The UI project must be built first, and only after that - API.
In other case the static UI resources might not be ready yet. -->
<dependency>
<groupId>org.hl7.gravity.refimpl.sdohexchange.cbo</groupId>
<artifactId>ui</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.hl7.gravity.refimpl.sdohexchange.components</groupId>
<artifactId>spring-boot-starter-exception-handler</artifactId>
Expand Down
10 changes: 10 additions & 0 deletions cp/app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,16 @@
<artifactId>fhir-common</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Explicitly specify UI dependency so that the build order is correct.
The UI project must be built first, and only after that - API.
In other case the static UI resources might not be ready yet. -->
<dependency>
<groupId>org.hl7.gravity.refimpl.sdohexchange.cp</groupId>
<artifactId>ui</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.hl7.gravity.refimpl.sdohexchange.components</groupId>
<artifactId>spring-boot-starter-exception-handler</artifactId>
Expand Down
10 changes: 10 additions & 0 deletions ehr/app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,16 @@
<artifactId>fhir-common</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Explicitly specify UI dependency so that the build order is correct.
The UI project must be built first, and only after that - API.
In other case the static UI resources might not be ready yet. -->
<dependency>
<groupId>org.hl7.gravity.refimpl.sdohexchange.ehr</groupId>
<artifactId>ui</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.hl7.gravity.refimpl.sdohexchange.components</groupId>
<artifactId>spring-boot-starter-exception-handler</artifactId>
Expand Down

0 comments on commit 87285a9

Please sign in to comment.