Skip to content

Commit

Permalink
fix: update bouncy castle lib #8365
Browse files Browse the repository at this point in the history
Signed-off-by: jgomer2001 <bonustrack310@gmail.com>
  • Loading branch information
jgomer2001 committed Apr 22, 2024
1 parent 22e4894 commit 4457ef5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions jans-casa/plugins/email_2fa_core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<plugin.id>email_2fa_core</plugin.id>
<bc.version>1.78</bc.version>
</properties>

<repositories>
Expand Down Expand Up @@ -87,25 +88,25 @@
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<version>1.74</version>
<version>${bc.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<version>1.74</version>
<artifactId>bcprov-jdk18on</artifactId>
<version>${bc.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
<version>1.73</version>
<version>${bc.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcmail-jdk18on</artifactId>
<version>1.73</version>
<version>${bc.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion jans-casa/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<ldapsdk.version>6.0.8</ldapsdk.version>
<resteasy.version>6.0.3.Final</resteasy.version>
<tika.version>2.6.0</tika.version>
<bc.version>1.74</bc.version>
<bc.version>1.78</bc.version>
<!-- SonarCloud integration properties -->
<sonar.projectKey>JanssenProject_jans-casa</sonar.projectKey>
<sonar.moduleKey>${project.groupId}:${project.artifactId}</sonar.moduleKey>
Expand Down

0 comments on commit 4457ef5

Please sign in to comment.