Skip to content

Commit

Permalink
Add bouncycastle dependencies to reproduce payara/Payara#6554
Browse files Browse the repository at this point in the history
  • Loading branch information
Gael Abadin committed May 13, 2024
1 parent b9d23f1 commit 5baf228
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
21 changes: 21 additions & 0 deletions hello-payara-world-ejb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,27 @@
<type>ejb</type>
<scope>provided</scope>
</dependency>
<!-- bouncycastle dependencies to reproduce https://github.com/payara/Payara/issues/6554 -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcutil-jdk15to18</artifactId>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcmail-jdk15to18</artifactId>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcmail-jdk18on</artifactId>
</dependency>
</dependencies>

</project>
37 changes: 37 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
<maven.compiler.source>11</maven.compiler.source>
<junit-jupiter.version>5.5.0</junit-jupiter.version>
<payara.version>6.2024.1</payara.version>
<bouncycastle.version>1.77</bouncycastle.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -75,6 +76,42 @@
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15to18</artifactId>
<version>${bouncycastle.version}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15to18</artifactId>
<version>${bouncycastle.version}</version>
</dependency>
<!-- bouncycastle dependencies to reproduce https://github.com/payara/Payara/issues/6554 -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcutil-jdk15to18</artifactId>
<version>${bouncycastle.version}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcmail-jdk15to18</artifactId>
<version>${bouncycastle.version}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<version>${bouncycastle.version}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
<version>${bouncycastle.version}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcmail-jdk18on</artifactId>
<version>${bouncycastle.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit 5baf228

Please sign in to comment.