You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by de...@apache.org on 2013/09/29 14:08:02 UTC

svn commit: r1527311 - /maven/plugins/trunk/maven-site-plugin/src/it/MSITE-665/pom.xml

Author: dennisl
Date: Sun Sep 29 12:08:02 2013
New Revision: 1527311

URL: http://svn.apache.org/r1527311
Log:
Since this IT uses annotations, we need to configure the compiler plugin accordingly. This error doesn't show up when using newer versions of Maven that have a newer default version of the compiler plugin that has other defaults for source/target.

Modified:
    maven/plugins/trunk/maven-site-plugin/src/it/MSITE-665/pom.xml

Modified: maven/plugins/trunk/maven-site-plugin/src/it/MSITE-665/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-site-plugin/src/it/MSITE-665/pom.xml?rev=1527311&r1=1527310&r2=1527311&view=diff
==============================================================================
--- maven/plugins/trunk/maven-site-plugin/src/it/MSITE-665/pom.xml (original)
+++ maven/plugins/trunk/maven-site-plugin/src/it/MSITE-665/pom.xml Sun Sep 29 12:08:02 2013
@@ -39,6 +39,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>@project.version@</version>
         <executions>