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

Commit

Permalink
Add 'provided' scope to existing jars in examples
Browse files Browse the repository at this point in the history
In order to rely on jar versions as provided by the workflow server,
there is a need to set the scope of those dependencies in
workflow-examples/pom.xml as 'provided'.

Signed-off-by: Moti Asayag <masayag@redhat.com>
  • Loading branch information
masayag committed Mar 14, 2023
1 parent 4f9dc3a commit 48e0370
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions workflow-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,21 +47,25 @@
<groupId>dev.parodos</groupId>
<artifactId>workflow-engine</artifactId>
<version>${revision}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>dev.parodos</groupId>
<artifactId>parodos-model-api</artifactId>
<version>${revision}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down

0 comments on commit 48e0370

Please sign in to comment.