You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2013/10/29 10:48:13 UTC

svn commit: r1536628 - in /myfaces/tobago/trunk: pom.xml tobago-core/pom.xml tobago-example/tobago-example-portlet/pom.xml

Author: lofwyr
Date: Tue Oct 29 09:48:12 2013
New Revision: 1536628

URL: http://svn.apache.org/r1536628
Log:
TOBAGO-633: Portlet support

Modified:
    myfaces/tobago/trunk/pom.xml
    myfaces/tobago/trunk/tobago-core/pom.xml
    myfaces/tobago/trunk/tobago-example/tobago-example-portlet/pom.xml

Modified: myfaces/tobago/trunk/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/pom.xml?rev=1536628&r1=1536627&r2=1536628&view=diff
==============================================================================
--- myfaces/tobago/trunk/pom.xml (original)
+++ myfaces/tobago/trunk/pom.xml Tue Oct 29 09:48:12 2013
@@ -574,6 +574,12 @@
       <scope>provided</scope>
     </dependency>
 
+    <dependency>
+      <groupId>javax.portlet</groupId>
+      <artifactId>portlet-api</artifactId>
+      <scope>provided</scope>
+    </dependency>
+
     <!-- you may want to add this for debugging -->
 <!--
     <dependency>

Modified: myfaces/tobago/trunk/tobago-core/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-core/pom.xml?rev=1536628&r1=1536627&r2=1536628&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-core/pom.xml (original)
+++ myfaces/tobago/trunk/tobago-core/pom.xml Tue Oct 29 09:48:12 2013
@@ -202,11 +202,6 @@
       <groupId>javax.servlet</groupId>
       <artifactId>servlet-api</artifactId>
     </dependency>
-    <dependency>
-      <groupId>javax.portlet</groupId>
-      <artifactId>portlet-api</artifactId>
-      <scope>provided</scope>
-    </dependency>
 
     <dependency>
       <groupId>maven-taglib</groupId>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-portlet/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-portlet/pom.xml?rev=1536628&r1=1536627&r2=1536628&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-portlet/pom.xml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-portlet/pom.xml Tue Oct 29 09:48:12 2013
@@ -39,46 +39,18 @@
       <version>${project.version}</version>
     </dependency>
 
+    <!-- for JSF 2.0 and Bean Validation (JSR-303)  -->
     <dependency>
       <groupId>javax.el</groupId>
       <artifactId>el-api</artifactId>
-      <version>1.0</version>
-      <!-- in the case of Servlet 2.5 / JSP 2.1
-                 e. g. Tomcat 6 the scope should be "provided"
-            <scope>provided</scope>
-       -->
+      <version>2.2</version>
+      <scope>compile</scope>
     </dependency>
-      <dependency>
-        <groupId>com.sun.el</groupId>
-        <artifactId>el-ri</artifactId>
-        <version>1.0</version>
-      </dependency>
-    <!--
-        <dependency>
-          <groupId>com.sun.faces.portlet</groupId>
-          <artifactId>jsf-portlet</artifactId>
-          <version>1.1.5</version>
-        </dependency>
-    -->
-    <!--
     <dependency>
-      <groupId>portlet-api</groupId>
-      <artifactId>portlet-api</artifactId>
+      <groupId>org.glassfish.web</groupId>
+      <artifactId>el-impl</artifactId>
+      <version>2.2</version>
     </dependency>
-    -->
-    <!--
-    <dependency>
-      <groupId>org.apache.myfaces.portlet-bridge</groupId>
-      <artifactId>portlet-bridge-api</artifactId>
-      <version>1.0.0-SNAPSHOT</version>
-    </dependency>
-
-    <dependency>
-      <groupId>org.apache.myfaces.portlet-bridge</groupId>
-      <artifactId>portlet-bridge-impl</artifactId>
-      <version>1.0.0-SNAPSHOT</version>
-    </dependency>
-    -->
 
   </dependencies>
 </project>