Skip to content

Commit

Permalink
fix(fpi-fw): add bouncycastle bcprov dependency explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
vincejv committed Aug 27, 2023
1 parent 19d7c58 commit b7ea485
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
7 changes: 7 additions & 0 deletions bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
<quarkus.platform.version>3.3.0</quarkus.platform.version>
<org.mapstruct.version>1.5.5.Final</org.mapstruct.version>
<org.bouncycastle-bcprov.version>1.76</org.bouncycastle-bcprov.version>
<skipITs>true</skipITs>
<surefire-plugin.version>3.1.2</surefire-plugin.version>
<deploy-plugin.version>3.1.1</deploy-plugin.version>
Expand Down Expand Up @@ -128,6 +129,12 @@
<version>${org.mapstruct.version}</version>
</dependency>

<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<version>${org.bouncycastle-bcprov.version}</version>
</dependency>

<dependency>
<groupId>${abavilla.framework.group-id}</groupId>
<artifactId>fpi-framework-core</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,11 @@
<artifactId>quarkus-smallrye-fault-tolerance</artifactId>
</dependency>

<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
</dependency>

</dependencies>

<build>
Expand Down

0 comments on commit b7ea485

Please sign in to comment.