[jboss-remoting-commits] JBoss Remoting SVN: r5832 - remoting3/trunk.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Wed Mar 17 23:03:49 EDT 2010


Author: trustin
Date: 2010-03-17 23:03:49 -0400 (Wed, 17 Mar 2010)
New Revision: 5832

Modified:
   remoting3/trunk/pom.xml
Log:
Fixed a build problem where the actual source version is 1.6 while the compiler plugin's properties were set to 1.5

Modified: remoting3/trunk/pom.xml
===================================================================
--- remoting3/trunk/pom.xml	2010-03-18 02:46:34 UTC (rev 5831)
+++ remoting3/trunk/pom.xml	2010-03-18 03:03:49 UTC (rev 5832)
@@ -104,6 +104,14 @@
         <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.6</source>
+                    <target>1.6</target>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-deploy-plugin</artifactId>
                 <configuration>
                     <skip>true</skip>



More information about the jboss-remoting-commits mailing list