You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2010/06/20 23:47:30 UTC

svn commit: r956419 - /maven/plugins/trunk/maven-site-plugin/pom.xml

Author: hboutemy
Date: Sun Jun 20 21:47:30 2010
New Revision: 956419

URL: http://svn.apache.org/viewvc?rev=956419&view=rev
Log:
[MSITE-487] upgraded compiler plugin to Java 5

Modified:
    maven/plugins/trunk/maven-site-plugin/pom.xml

Modified: maven/plugins/trunk/maven-site-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-site-plugin/pom.xml?rev=956419&r1=956418&r2=956419&view=diff
==============================================================================
--- maven/plugins/trunk/maven-site-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-site-plugin/pom.xml Sun Jun 20 21:47:30 2010
@@ -359,6 +359,14 @@ under the License.
       <plugins>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <configuration>
+            <source>1.5</source>
+            <target>1.5</target>
+          </configuration>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-site-plugin</artifactId>
           <version>2.0.1</version>
         </plugin>