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 2019/09/21 15:31:59 UTC

svn commit: r1867289 - /pdfbox/branches/issue4569/parent/pom.xml

Author: lehmi
Date: Sat Sep 21 15:31:58 2019
New Revision: 1867289

URL: http://svn.apache.org/viewvc?rev=1867289&view=rev
Log:
PDFBOX-4656: set minimum requirement to java 8, update maven-bundle-plugin

Modified:
    pdfbox/branches/issue4569/parent/pom.xml

Modified: pdfbox/branches/issue4569/parent/pom.xml
URL: http://svn.apache.org/viewvc/pdfbox/branches/issue4569/parent/pom.xml?rev=1867289&r1=1867288&r2=1867289&view=diff
==============================================================================
--- pdfbox/branches/issue4569/parent/pom.xml (original)
+++ pdfbox/branches/issue4569/parent/pom.xml Sat Sep 21 15:31:58 2019
@@ -189,17 +189,17 @@
                 <artifactId>maven-compiler-plugin</artifactId>
                 <configuration>
                     <showDeprecation>true</showDeprecation>
-                    <target>1.7</target>
-                    <source>1.7</source>
+                    <target>1.8</target>
+                    <source>1.8</source>
                     <encoding>UTF-8</encoding>
                 </configuration>
             </plugin>
             <plugin>
                 <artifactId>maven-javadoc-plugin</artifactId>
                 <configuration>
-                    <source>1.7</source>
+                    <source>1.8</source>
                     <links>
-                        <link>https://docs.oracle.com/javase/7/docs/api/</link>
+                        <link>https://docs.oracle.com/javase/8/docs/api/</link>
                     </links>
                     <encoding>UTF-8</encoding>
                     <notimestamp>true</notimestamp>
@@ -254,7 +254,7 @@
                             <skip>${skipTests}</skip>
 	                    <signature>
 	                      <groupId>org.codehaus.mojo.signature</groupId>
-	                      <artifactId>java17</artifactId>
+	                      <artifactId>java18</artifactId>
 	                      <version>1.0</version>
 	                    </signature>
 	                  </configuration>
@@ -301,8 +301,7 @@
                 <plugin>
                     <groupId>org.apache.felix</groupId>
                     <artifactId>maven-bundle-plugin</artifactId>
-                    <!-- don't update this, because later versions require JDK8 -->
-                    <version>2.5.4</version>
+                    <version>4.2.1</version>
                 </plugin>
             </plugins>
         </pluginManagement>