You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by de...@apache.org on 2006/06/04 07:00:57 UTC

svn commit: r411519 - /myfaces/core/branches/jsf12/impl/pom.xml

Author: dennisbyrne
Date: Sat Jun  3 22:00:56 2006
New Revision: 411519

URL: http://svn.apache.org/viewvc?rev=411519&view=rev
Log:
impl build no longer complains about org.apache.el.lang once jetty jsp dep is brought in.
impl's api dep was pointing to an older api release in ibiblio.  so old it had the myfaces groupId .  However, this is a 1.2 impl, and it depends on a 1.2 api, so the version number and group id of the api dep was changed.

Modified:
    myfaces/core/branches/jsf12/impl/pom.xml

Modified: myfaces/core/branches/jsf12/impl/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/core/branches/jsf12/impl/pom.xml?rev=411519&r1=411518&r2=411519&view=diff
==============================================================================
--- myfaces/core/branches/jsf12/impl/pom.xml (original)
+++ myfaces/core/branches/jsf12/impl/pom.xml Sat Jun  3 22:00:56 2006
@@ -206,7 +206,13 @@
       </build>
     </profile>
   </profiles>
-  <dependencies>  
+  <dependencies>
+    <dependency>
+       <groupId>org.mortbay.jetty</groupId>
+       <artifactId>jsp-2.1</artifactId>
+       <version>6.0.0beta15</version>
+       <scope>provided</scope>
+    </dependency>
     <!-- 
     
     Download Glassfish http://java.sun.com/javaee/downloads/index.jsp
@@ -226,9 +232,9 @@
       <scope>provided</scope>
     </dependency>
     <dependency>
-      <groupId>myfaces</groupId>
+      <groupId>org.apache.myfaces.core</groupId>
       <artifactId>myfaces-api</artifactId>
-      <version>1.1.1</version>
+      <version>1.1.4-SNAPSHOT</version>
       <scope>provided</scope>
     </dependency>
     <dependency>