You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-scm@portals.apache.org by ms...@apache.org on 2014/12/04 11:55:42 UTC

portals-pluto git commit: Fixed POM for portlet hub demo portlets by adding a dependency on the standard taglib implementation

Repository: portals-pluto
Updated Branches:
  refs/heads/PortletHub 1c869b7cf -> 0ce374237


Fixed POM for portlet hub demo portlets by adding a dependency on the standard taglib implementation


Project: http://git-wip-us.apache.org/repos/asf/portals-pluto/repo
Commit: http://git-wip-us.apache.org/repos/asf/portals-pluto/commit/0ce37423
Tree: http://git-wip-us.apache.org/repos/asf/portals-pluto/tree/0ce37423
Diff: http://git-wip-us.apache.org/repos/asf/portals-pluto/diff/0ce37423

Branch: refs/heads/PortletHub
Commit: 0ce374237908b98514c22f90cd78bc74e4d1e318
Parents: 1c869b7
Author: Scott Nicklous <ms...@apache.org>
Authored: Thu Dec 4 11:54:50 2014 +0100
Committer: Scott Nicklous <ms...@apache.org>
Committed: Thu Dec 4 11:54:50 2014 +0100

----------------------------------------------------------------------
 PortletHubDemo/pom.xml | 43 +++++++++++++++++++++++++------------------
 1 file changed, 25 insertions(+), 18 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/portals-pluto/blob/0ce37423/PortletHubDemo/pom.xml
----------------------------------------------------------------------
diff --git a/PortletHubDemo/pom.xml b/PortletHubDemo/pom.xml
index 267afa9..9744021 100644
--- a/PortletHubDemo/pom.xml
+++ b/PortletHubDemo/pom.xml
@@ -36,6 +36,16 @@
          <scope>provided</scope>
       </dependency>
       <dependency>
+          <groupId>org.apache.taglibs</groupId>
+          <artifactId>taglibs-standard-impl</artifactId>
+          <scope>provided</scope>
+      </dependency>
+      <dependency>
+          <groupId>org.apache.taglibs</groupId>
+          <artifactId>taglibs-standard-jstlel</artifactId>
+          <scope>provided</scope>
+      </dependency>
+      <dependency>
          <groupId>org.apache.portals.pluto</groupId>
          <artifactId>pluto-taglib</artifactId>
          <version>2.1.0-M3</version>
@@ -73,24 +83,21 @@
          </activation>
     
          <dependencies>
-                <dependency>
-                    <groupId>org.apache.taglibs</groupId>
-                    <artifactId>taglibs-standard-spec</artifactId>
-                    <scope>compile</scope>
-                    <exclusions>
-                        <exclusion>
-                            <groupId>org.apache.tomcat</groupId>
-                            <artifactId>tomcat-jsp-api</artifactId>
-                        </exclusion>
-                    </exclusions>
-                </dependency>
-<!--                
-                <dependency>
-                    <groupId>taglibs</groupId>
-                    <artifactId>standard</artifactId>
-                    <scope>compile</scope>
-                </dependency>
--->                
+            <dependency>
+                <groupId>org.apache.taglibs</groupId>
+                <artifactId>taglibs-standard-spec</artifactId>
+                <scope>compile</scope>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.taglibs</groupId>
+                <artifactId>taglibs-standard-impl</artifactId>
+                <scope>compile</scope>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.taglibs</groupId>
+                <artifactId>taglibs-standard-jstlel</artifactId>
+                <scope>compile</scope>
+            </dependency>
          </dependencies>
          
          <build>