You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by ju...@apache.org on 2009/04/30 12:28:09 UTC

svn commit: r770149 - /jackrabbit/trunk/jackrabbit-parent/pom.xml

Author: jukka
Date: Thu Apr 30 10:28:09 2009
New Revision: 770149

URL: http://svn.apache.org/viewvc?rev=770149&view=rev
Log:
JCR-2087: Upgrade to Java 5 as the base platform

Modified:
    jackrabbit/trunk/jackrabbit-parent/pom.xml

Modified: jackrabbit/trunk/jackrabbit-parent/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-parent/pom.xml?rev=770149&r1=770148&r2=770149&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-parent/pom.xml (original)
+++ jackrabbit/trunk/jackrabbit-parent/pom.xml Thu Apr 30 10:28:09 2009
@@ -74,12 +74,12 @@
 
   <build>
     <plugins>
-      <!-- Use Java 1.4 everywhere -->
+      <!-- JCR-2087: Upgrade to Java 5 as the base platform -->
       <plugin>
         <artifactId>maven-compiler-plugin</artifactId>
         <configuration>
-          <target>1.4</target>
-          <source>1.4</source>
+          <target>1.5</target>
+          <source>1.5</source>
         </configuration>
       </plugin>
       <!-- JCR-704: Enable maven-source-plugin -->