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 2013/05/01 15:18:57 UTC

svn commit: r1477983 - in /pdfbox/trunk: README.txt parent/pom.xml pdfbox/build.xml

Author: lehmi
Date: Wed May  1 13:18:57 2013
New Revision: 1477983

URL: http://svn.apache.org/r1477983
Log:
PDFBOX-1589: changed minimum java requirement to 1.6

Modified:
    pdfbox/trunk/README.txt
    pdfbox/trunk/parent/pom.xml
    pdfbox/trunk/pdfbox/build.xml

Modified: pdfbox/trunk/README.txt
URL: http://svn.apache.org/viewvc/pdfbox/trunk/README.txt?rev=1477983&r1=1477982&r2=1477983&view=diff
==============================================================================
--- pdfbox/trunk/README.txt (original)
+++ pdfbox/trunk/README.txt Wed May  1 13:18:57 2013
@@ -8,7 +8,7 @@ of existing documents and the ability to
 PDFBox also includes several command line utilities. PDFBox is published
 under the Apache License, Version 2.0.
 
-You need Java 5 (or higher) and Maven 2 <http://maven.apache.org/> to
+You need Java 6 (or higher) and Maven 2 <http://maven.apache.org/> to
 build PDFBox. The recommended build command is:
 
     mvn clean install

Modified: pdfbox/trunk/parent/pom.xml
URL: http://svn.apache.org/viewvc/pdfbox/trunk/parent/pom.xml?rev=1477983&r1=1477982&r2=1477983&view=diff
==============================================================================
--- pdfbox/trunk/parent/pom.xml (original)
+++ pdfbox/trunk/parent/pom.xml Wed May  1 13:18:57 2013
@@ -76,16 +76,16 @@
       <plugin>
         <artifactId>maven-compiler-plugin</artifactId>
         <configuration>
-          <target>1.5</target>
-          <source>1.5</source>
+          <target>1.6</target>
+          <source>1.6</source>
         </configuration>
       </plugin>
       <plugin>
         <artifactId>maven-javadoc-plugin</artifactId>
         <configuration>
-          <source>1.5</source>
+          <source>1.6</source>
           <links>
-            <link>http://download.oracle.com/javase/1.5.0/docs/api/</link>
+            <link>http://download.oracle.com/javase/1.6.0/docs/api/</link>
           </links>
         </configuration>
       </plugin>

Modified: pdfbox/trunk/pdfbox/build.xml
URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/build.xml?rev=1477983&r1=1477982&r2=1477983&view=diff
==============================================================================
--- pdfbox/trunk/pdfbox/build.xml (original)
+++ pdfbox/trunk/pdfbox/build.xml Wed May  1 13:18:57 2013
@@ -189,10 +189,10 @@
             description="Compile Java source files">
         <!-- required encoding flag to be able to build using ibm-jdk on redhat ES-->
         <javac srcdir="${pdfbox.src.dir}" destdir="${pdfbox.dest.dir}"
-               target="1.5" source="1.5" debug="on" deprecation="on"
+               target="1.6" source="1.6" debug="on" deprecation="on"
                classpathref="pdfbox.build.classpath" encoding="ISO-8859-1"/>
         <javac srcdir="${pdfbox.test.dir}" destdir="${pdfbox.dest.dir}"
-               target="1.5" source="1.5" debug="on" deprecation="on"
+               target="1.6" source="1.6" debug="on" deprecation="on"
                classpathref="pdfbox.build.classpath" encoding="ISO-8859-1"/>
     </target>
 
@@ -200,10 +200,10 @@
             description="Compile Java source files">
         <!-- required encoding flag to be able to build using ibm-jdk on redhat ES-->
         <javac srcdir="${fontbox.src.dir}" destdir="${fontbox.dest.dir}"
-               target="1.5" source="1.5" debug="on" deprecation="on"
+               target="1.6" source="1.6" debug="on" deprecation="on"
                classpathref="fontbox.build.classpath" encoding="ISO-8859-1"/>
         <javac srcdir="${fontbox.test.dir}" destdir="${fontbox.dest.dir}"
-               target="1.5" source="1.5" debug="on" deprecation="on"
+               target="1.6" source="1.6" debug="on" deprecation="on"
                classpathref="fontbox.build.classpath" encoding="ISO-8859-1"/>
     </target>
 
@@ -211,10 +211,10 @@
             description="Compile Java source files">
         <!-- required encoding flag to be able to build using ibm-jdk on redhat ES-->
         <javac srcdir="${jempbox.src.dir}" destdir="${jempbox.dest.dir}"
-               target="1.5" source="1.5" debug="on" deprecation="on"
+               target="1.6" source="1.6" debug="on" deprecation="on"
                classpathref="jempbox.build.classpath" encoding="ISO-8859-1"/>
         <javac srcdir="${jempbox.test.dir}" destdir="${jempbox.dest.dir}"
-               target="1.5" source="1.5" debug="on" deprecation="on"
+               target="1.6" source="1.6" debug="on" deprecation="on"
                classpathref="jempbox.build.classpath" encoding="ISO-8859-1"/>
     </target>
 
@@ -920,7 +920,7 @@
                classpathref="pdfbox.build.classpath"
                encoding="ISO-8859-1"
                breakiterator="yes">
-            <link href="http://java.sun.com/j2se/1.5.0/docs/api/"/>
+            <link href="http://java.sun.com/j2se/1.6.0/docs/api/"/>
         </javadoc>
         <!-- PDFBOX-461: Disable javadoc creation timestamp -->
         <replaceregexp match="&lt;!-- Generated by javadoc .* --&gt;"