You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by im...@apache.org on 2007/10/07 18:44:07 UTC

svn commit: r582647 - /myfaces/orchestra/trunk/core/pom.xml

Author: imario
Date: Sun Oct  7 09:44:04 2007
New Revision: 582647

URL: http://svn.apache.org/viewvc?rev=582647&view=rev
Log:
added missing compiler configuration

Modified:
    myfaces/orchestra/trunk/core/pom.xml

Modified: myfaces/orchestra/trunk/core/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/core/pom.xml?rev=582647&r1=582646&r2=582647&view=diff
==============================================================================
--- myfaces/orchestra/trunk/core/pom.xml (original)
+++ myfaces/orchestra/trunk/core/pom.xml Sun Oct  7 09:44:04 2007
@@ -1,4 +1,5 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+		 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 	<modelVersion>4.0.0</modelVersion>
 
 	<groupId>org.apache.myfaces.orchestra</groupId>
@@ -101,7 +102,14 @@
 	<build>
 
 		<plugins>
-
+			<plugin>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<version>2.0</version>
+				<configuration>
+					<source>1.4</source>
+					<target>1.4</target>
+				</configuration>
+			</plugin>
 
 			<plugin>
 				<groupId>org.codehaus.mojo</groupId>
@@ -169,20 +177,20 @@
 				</executions>
 			</plugin>
 
-<!--
-			<plugin>
-				<groupId>org.codehaus.mojo</groupId>
-				<artifactId>rat-maven-plugin</artifactId>
-				<executions>
-					<execution>
-						<phase>verify</phase>
-						<goals>
-							<goal>check</goal>
-						</goals>
-					</execution>
-				</executions>
-			</plugin>
--->
+			<!--
+			   <plugin>
+				   <groupId>org.codehaus.mojo</groupId>
+				   <artifactId>rat-maven-plugin</artifactId>
+				   <executions>
+					   <execution>
+						   <phase>verify</phase>
+						   <goals>
+							   <goal>check</goal>
+						   </goals>
+					   </execution>
+				   </executions>
+			   </plugin>
+   -->
 		</plugins>
 	</build>