You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2013/08/15 10:37:33 UTC

svn commit: r1514199 - /directory/mavibot/trunk/pom.xml

Author: elecharny
Date: Thu Aug 15 08:37:33 2013
New Revision: 1514199

URL: http://svn.apache.org/r1514199
Log:
Switched to Java 6 instead of Java 7

Modified:
    directory/mavibot/trunk/pom.xml

Modified: directory/mavibot/trunk/pom.xml
URL: http://svn.apache.org/viewvc/directory/mavibot/trunk/pom.xml?rev=1514199&r1=1514198&r2=1514199&view=diff
==============================================================================
--- directory/mavibot/trunk/pom.xml (original)
+++ directory/mavibot/trunk/pom.xml Thu Aug 15 08:37:33 2013
@@ -160,8 +160,8 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
         <configuration>
-          <source>1.7</source>
-          <target>1.7</target>
+          <source>1.6</source>
+          <target>1.6</target>
           <optimize>true</optimize>
 		  <debug>true</debug>
           <showDeprecations>true</showDeprecations>
@@ -225,14 +225,14 @@
         <artifactId>maven-enforcer-plugin</artifactId>
         <executions>
           <execution>
-            <id>enforce-java-17</id>
+            <id>enforce-java-16</id>
             <goals>
               <goal>enforce</goal>
             </goals>
             <configuration>
               <rules>
                 <requireJavaVersion>
-                  <version>1.7.0</version>
+                  <version>1.6.0</version>
                 </requireJavaVersion>
               </rules>
             </configuration>