You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by ts...@apache.org on 2007/11/13 02:04:00 UTC

svn commit: r594375 - /struts/sandbox/trunk/struts2-webwork2-plugin/pom.xml

Author: tschneider
Date: Mon Nov 12 17:03:59 2007
New Revision: 594375

URL: http://svn.apache.org/viewvc?rev=594375&view=rev
Log:
updating to java 1.5

Modified:
    struts/sandbox/trunk/struts2-webwork2-plugin/pom.xml

Modified: struts/sandbox/trunk/struts2-webwork2-plugin/pom.xml
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-webwork2-plugin/pom.xml?rev=594375&r1=594374&r2=594375&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-webwork2-plugin/pom.xml (original)
+++ struts/sandbox/trunk/struts2-webwork2-plugin/pom.xml Mon Nov 12 17:03:59 2007
@@ -8,6 +8,17 @@
    <version>1.0-SNAPSHOT</version>
    <name>Struts 2 Plugin</name>
 
+	<build>
+		<plugins>
+			<plugin>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>1.5</source>
+					<target>1.5</target>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
     <dependencies>
 
         <dependency>
@@ -39,9 +50,4 @@
         </dependency>
  
     </dependencies>
-
-    <build>
-        <defaultGoal>install</defaultGoal>
-    </build>
-
 </project>