Skip to content

Commit

Permalink
removes not needed dependencies and adds validation support for plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
hhund committed Oct 2, 2023
1 parent d652fb5 commit d9d73a1
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
5 changes: 5 additions & 0 deletions dsf-bpe/dsf-bpe-process-api-v1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@
<artifactId>spring-web</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>dev.dsf</groupId>
<artifactId>dsf-fhir-validation</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>de.hs-heilbronn.mi</groupId>
<artifactId>crypto-utils</artifactId>
Expand Down
6 changes: 6 additions & 0 deletions dsf-bpe/dsf-bpe-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,12 @@
<artifactId>crypto-utils</artifactId>
</dependency>

<!-- dependencies for process plugins -->
<dependency>
<groupId>dev.dsf</groupId>
<artifactId>dsf-fhir-validation</artifactId>
</dependency>

<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
Expand Down
5 changes: 0 additions & 5 deletions dsf-fhir/dsf-fhir-rest-adapter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@
</parent>

<dependencies>
<dependency>
<groupId>dev.dsf</groupId>
<artifactId>dsf-common-auth</artifactId>
</dependency>

<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-r4</artifactId>
Expand Down
3 changes: 3 additions & 0 deletions dsf-fhir/dsf-fhir-validation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
<!-- https://github.com/mojohaus/exec-maven-plugin/issues/247 -->
<!-- <scope>test</scope> -->
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
Expand All @@ -58,13 +59,15 @@
<!-- https://github.com/mojohaus/exec-maven-plugin/issues/247 -->
<!-- <scope>test</scope> -->
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<!-- Workaround for exec maven plugin version 3.1.0 issue -->
<!-- https://github.com/mojohaus/exec-maven-plugin/issues/247 -->
<dependency>
<groupId>dev.dsf</groupId>
<artifactId>dsf-tools-bundle-generator</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
</dependencies>

Expand Down

0 comments on commit d9d73a1

Please sign in to comment.