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 2012/03/06 14:59:30 UTC

svn commit: r1297476 - /jackrabbit/oak/trunk/oak-parent/pom.xml

Author: jukka
Date: Tue Mar  6 13:59:29 2012
New Revision: 1297476

URL: http://svn.apache.org/viewvc?rev=1297476&view=rev
Log:
OAK-1: Setup basic build structure

Set Java 5 as the base platform.

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

Modified: jackrabbit/oak/trunk/oak-parent/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-parent/pom.xml?rev=1297476&r1=1297475&r2=1297476&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-parent/pom.xml (original)
+++ jackrabbit/oak/trunk/oak-parent/pom.xml Tue Mar  6 13:59:29 2012
@@ -58,6 +58,22 @@
     <pluginManagement>
       <plugins>
         <plugin>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <configuration>
+            <target>1.5</target>
+            <source>1.5</source>
+          </configuration>
+        </plugin>
+        <plugin>
+          <artifactId>maven-javadoc-plugin</artifactId>
+          <configuration>
+            <source>1.5</source>
+            <links>
+              <link>http://docs.oracle.com/javase/1.5.0/docs/api/</link>
+            </links>
+          </configuration>
+        </plugin>
+        <plugin>
           <artifactId>maven-deploy-plugin</artifactId>
           <configuration>
             <skip>${skip.deployment}</skip>