You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ca...@apache.org on 2007/12/22 23:31:40 UTC

svn commit: r606506 - /myfaces/tomahawk/branches/1_2_0/pom.xml

Author: cagatay
Date: Sat Dec 22 14:31:39 2007
New Revision: 606506

URL: http://svn.apache.org/viewvc?rev=606506&view=rev
Log:
Set compiler level to 1.5, temporaly disabled examples and sandbox module build

Modified:
    myfaces/tomahawk/branches/1_2_0/pom.xml

Modified: myfaces/tomahawk/branches/1_2_0/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/branches/1_2_0/pom.xml?rev=606506&r1=606505&r2=606506&view=diff
==============================================================================
--- myfaces/tomahawk/branches/1_2_0/pom.xml (original)
+++ myfaces/tomahawk/branches/1_2_0/pom.xml Sat Dec 22 14:31:39 2007
@@ -194,9 +194,22 @@
 
   <modules>
     <module>core</module>
-    <module>examples</module>
-    <module>sandbox</module>
+    <!--<module>examples</module>
+		<module>sandbox</module>-->
   </modules>
+  
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 
   <properties>
     <myfaces.version>1.2.1-SNAPSHOT</myfaces.version>