Repository: pdfbox-docs Updated Branches: refs/heads/asf-site 31707843e -> a0c7da6c6
Site checkin for project Apache PDFBox Website Project: http://git-wip-us.apache.org/repos/asf/pdfbox-docs/repo Commit: http://git-wip-us.apache.org/repos/asf/pdfbox-docs/commit/a0c7da6c Tree: http://git-wip-us.apache.org/repos/asf/pdfbox-docs/tree/a0c7da6c Diff: http://git-wip-us.apache.org/repos/asf/pdfbox-docs/diff/a0c7da6c Branch: refs/heads/asf-site Commit: a0c7da6c60d77787ae51bc35a8ce6f0411803c9e Parents: 3170784 Author: Andreas Lehmkühler <andr...@lehmi.de> Authored: Tue Jan 5 15:25:55 2016 +0100 Committer: Andreas Lehmkühler <andr...@lehmi.de> Committed: Tue Jan 5 15:25:55 2016 +0100 ---------------------------------------------------------------------- content/2.0/dependencies.html | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/a0c7da6c/content/2.0/dependencies.html ---------------------------------------------------------------------- diff --git a/content/2.0/dependencies.html b/content/2.0/dependencies.html index 6d817a2..aa52190 100644 --- a/content/2.0/dependencies.html +++ b/content/2.0/dependencies.html @@ -146,7 +146,7 @@ or let commons-logging fall back to the standard <a href="http://java.sun.com/j2se/1.4.2/docs/guide/util/logging/overview.html">java.util.logging API</a> included in the Java platform.</p> -<p>For <strong>PDFBox Preflight only</strong> <a href="https://commons.apache.org/proper/commons-io/">commons-io 2.4</a> is needed.</p> +<p>For <strong>PDFBox Preflight tests only</strong> <a href="https://commons.apache.org/proper/commons-io/">commons-io 2.4</a> is needed.</p> <h2 id="optional-components">Optional components</h2> @@ -169,17 +169,23 @@ included in the Java platform.</p> <h3 id="encryption-and-signing">Encryption and Signing</h3> -<p>Encrypting and sigining PDFs requires the <em>bcprov</em> and <em>bcmail</em> libraries from the <a href="http://www.bouncycastle.org/">Legion of the Bouncy Castle</a>. These can be included in your Maven project using the following dependencies:</p> +<p>Encrypting and sigining PDFs requires the <em>bcprov</em>, <em>bcmail</em> and <em>bcpkix</em> libraries from the <a href="http://www.bouncycastle.org/">Legion of the Bouncy Castle</a>. These can be included in your Maven project using the following dependencies:</p> <div class="highlight"><pre><code class="language-" data-lang=""><dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> - <version>1.53</version> + <version>1.54</version> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcmail-jdk15on</artifactId> - <version>1.53</version> + <version>1.54</version> +</dependency> + +<dependency> + <groupId>org.bouncycastle</groupId> + <artifactId>bcpkix-jdk15on</artifactId> + <version>1.54</version> </dependency> </code></pre></div> <h3 id="java-cryptography-extension-jce">Java Cryptography Extension (JCE)</h3>