You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2011/05/24 16:10:53 UTC

svn commit: r1127063 - in /myfaces/tomahawk/trunk/sandbox: examples/pom.xml examples20/pom.xml

Author: lu4242
Date: Tue May 24 14:10:53 2011
New Revision: 1127063

URL: http://svn.apache.org/viewvc?rev=1127063&view=rev
Log:
fix jstl dependency

Modified:
    myfaces/tomahawk/trunk/sandbox/examples/pom.xml
    myfaces/tomahawk/trunk/sandbox/examples20/pom.xml

Modified: myfaces/tomahawk/trunk/sandbox/examples/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/pom.xml?rev=1127063&r1=1127062&r2=1127063&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/pom.xml (original)
+++ myfaces/tomahawk/trunk/sandbox/examples/pom.xml Tue May 24 14:10:53 2011
@@ -113,7 +113,7 @@
                     <scope>compile</scope>
                 </dependency>
                 <dependency>
-                    <groupId>jstl</groupId>
+                    <groupId>javax.servlet</groupId>
                     <artifactId>jstl</artifactId>
                     <version>1.2</version>
                 </dependency>

Modified: myfaces/tomahawk/trunk/sandbox/examples20/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples20/pom.xml?rev=1127063&r1=1127062&r2=1127063&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples20/pom.xml (original)
+++ myfaces/tomahawk/trunk/sandbox/examples20/pom.xml Tue May 24 14:10:53 2011
@@ -81,7 +81,7 @@
                     <scope>runtime</scope>
                 </dependency>
                 <dependency>
-                    <groupId>jstl</groupId>
+                    <groupId>javax.servlet</groupId>
                     <artifactId>jstl</artifactId>
                     <version>1.2</version>
                 </dependency>
@@ -241,6 +241,14 @@
                     <scanIntervalSeconds>10</scanIntervalSeconds>
                 </configuration>
             </plugin>
+            <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>