You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by le...@apache.org on 2023/06/25 10:23:37 UTC

[pdfbox-docs] branch master updated: PDFBOX-5625: update BC dependencies

This is an automated email from the ASF dual-hosted git repository.

lehmi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pdfbox-docs.git


The following commit(s) were added to refs/heads/master by this push:
     new e74bd080 PDFBOX-5625: update BC dependencies
e74bd080 is described below

commit e74bd0801d6d37f9165ddb024aca58d123538c50
Author: Andreas Lehmkühler <an...@lehmi.de>
AuthorDate: Sun Jun 25 12:21:54 2023 +0200

    PDFBOX-5625: update BC dependencies
---
 content/2.0/dependencies.md | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/content/2.0/dependencies.md b/content/2.0/dependencies.md
index 8dfe53ba..63f6b456 100644
--- a/content/2.0/dependencies.md
+++ b/content/2.0/dependencies.md
@@ -95,20 +95,20 @@ Encrypting and sigining PDFs requires the *bcprov*, *bcmail* and *bcpkix* librar
 ```xml
 <dependency>
     <groupId>org.bouncycastle</groupId>
-    <artifactId>bcprov-jdk15on</artifactId>
-    <version>1.64</version>
+    <artifactId>bcprov-jdk15to18</artifactId>
+    <version>1.75</version>
 </dependency>
 
 <dependency>
     <groupId>org.bouncycastle</groupId>
-    <artifactId>bcmail-jdk15on</artifactId>
-    <version>1.64</version>
+    <artifactId>bcmail-jdk15to18</artifactId>
+    <version>1.75</version>
 </dependency>
 
 <dependency>
     <groupId>org.bouncycastle</groupId>
-    <artifactId>bcpkix-jdk15on</artifactId>
-    <version>1.64</version>
+    <artifactId>bcpkix-jdk15to18</artifactId>
+    <version>1.75</version>
 </dependency>
 ```