You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by ti...@apache.org on 2018/10/30 18:07:06 UTC

svn commit: r1845259 - in /pdfbox/branches/1.8: app/pom.xml examples/pom.xml parent/pom.xml pdfbox/pom.xml preflight-app/pom.xml preflight/pom.xml

Author: tilman
Date: Tue Oct 30 18:07:06 2018
New Revision: 1845259

URL: http://svn.apache.org/viewvc?rev=1845259&view=rev
Log:
PDFBOX-4071: centralize BouncyCastle version number

Modified:
    pdfbox/branches/1.8/app/pom.xml
    pdfbox/branches/1.8/examples/pom.xml
    pdfbox/branches/1.8/parent/pom.xml
    pdfbox/branches/1.8/pdfbox/pom.xml
    pdfbox/branches/1.8/preflight-app/pom.xml
    pdfbox/branches/1.8/preflight/pom.xml

Modified: pdfbox/branches/1.8/app/pom.xml
URL: http://svn.apache.org/viewvc/pdfbox/branches/1.8/app/pom.xml?rev=1845259&r1=1845258&r2=1845259&view=diff
==============================================================================
--- pdfbox/branches/1.8/app/pom.xml (original)
+++ pdfbox/branches/1.8/app/pom.xml Tue Oct 30 18:07:06 2018
@@ -42,13 +42,11 @@
     <dependency>
       <groupId>org.bouncycastle</groupId>
       <artifactId>bcmail-jdk15</artifactId>
-      <version>1.44</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.bouncycastle</groupId>
       <artifactId>bcprov-jdk15</artifactId>
-      <version>1.44</version>
       <scope>provided</scope>
     </dependency>
     <dependency>

Modified: pdfbox/branches/1.8/examples/pom.xml
URL: http://svn.apache.org/viewvc/pdfbox/branches/1.8/examples/pom.xml?rev=1845259&r1=1845258&r2=1845259&view=diff
==============================================================================
--- pdfbox/branches/1.8/examples/pom.xml (original)
+++ pdfbox/branches/1.8/examples/pom.xml Tue Oct 30 18:07:06 2018
@@ -56,7 +56,6 @@
     <dependency>
       <groupId>org.bouncycastle</groupId>
       <artifactId>bcmail-jdk15</artifactId>
-      <version>1.44</version>
       <optional>true</optional>
     </dependency>
     <dependency>

Modified: pdfbox/branches/1.8/parent/pom.xml
URL: http://svn.apache.org/viewvc/pdfbox/branches/1.8/parent/pom.xml?rev=1845259&r1=1845258&r2=1845259&view=diff
==============================================================================
--- pdfbox/branches/1.8/parent/pom.xml (original)
+++ pdfbox/branches/1.8/parent/pom.xml Tue Oct 30 18:07:06 2018
@@ -46,9 +46,25 @@
   </issueManagement>
 
   <properties>
-    <project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
+      <project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
+      <bouncycastle.version>1.44</bouncycastle.version>
   </properties>
 
+  <dependencyManagement>
+      <dependencies>
+          <dependency>
+              <groupId>org.bouncycastle</groupId>
+              <artifactId>bcprov-jdk15</artifactId>
+              <version>${bouncycastle.version}</version>
+          </dependency>
+          <dependency>
+              <groupId>org.bouncycastle</groupId>
+              <artifactId>bcmail-jdk15</artifactId>
+              <version>${bouncycastle.version}</version>
+          </dependency>
+      </dependencies>
+  </dependencyManagement>
+
   <profiles>
     <profile>
       <id>pedantic</id>

Modified: pdfbox/branches/1.8/pdfbox/pom.xml
URL: http://svn.apache.org/viewvc/pdfbox/branches/1.8/pdfbox/pom.xml?rev=1845259&r1=1845258&r2=1845259&view=diff
==============================================================================
--- pdfbox/branches/1.8/pdfbox/pom.xml (original)
+++ pdfbox/branches/1.8/pdfbox/pom.xml Tue Oct 30 18:07:06 2018
@@ -55,13 +55,11 @@
         <dependency>
             <groupId>org.bouncycastle</groupId>
             <artifactId>bcmail-jdk15</artifactId>
-            <version>1.44</version>
             <optional>true</optional>
         </dependency>
         <dependency>
             <groupId>org.bouncycastle</groupId>
             <artifactId>bcprov-jdk15</artifactId>
-            <version>1.44</version>
             <optional>true</optional>
         </dependency>
         <dependency>

Modified: pdfbox/branches/1.8/preflight-app/pom.xml
URL: http://svn.apache.org/viewvc/pdfbox/branches/1.8/preflight-app/pom.xml?rev=1845259&r1=1845258&r2=1845259&view=diff
==============================================================================
Binary files - no diff available.

Modified: pdfbox/branches/1.8/preflight/pom.xml
URL: http://svn.apache.org/viewvc/pdfbox/branches/1.8/preflight/pom.xml?rev=1845259&r1=1845258&r2=1845259&view=diff
==============================================================================
--- pdfbox/branches/1.8/preflight/pom.xml (original)
+++ pdfbox/branches/1.8/preflight/pom.xml Tue Oct 30 18:07:06 2018
@@ -210,13 +210,11 @@
 		<dependency>
 			<groupId>org.bouncycastle</groupId>
 			<artifactId>bcmail-jdk15</artifactId>
-			<version>1.44</version>
 			<optional>true</optional>
 		</dependency>
 		<dependency>
 			<groupId>org.bouncycastle</groupId>
 			<artifactId>bcprov-jdk15</artifactId>
-			<version>1.44</version>
 			<optional>true</optional>
 		</dependency>
 		<dependency>