You are viewing a plain text version of this content. The canonical link for it is here.
Posted to portalapps-dev@portals.apache.org by wo...@apache.org on 2009/04/17 09:42:56 UTC

svn commit: r765883 - /portals/applications/demo/trunk/pom.xml

Author: woonsan
Date: Fri Apr 17 07:42:56 2009
New Revision: 765883

URL: http://svn.apache.org/viewvc?rev=765883&view=rev
Log:
Fixing dependencies. Groovy-1.0's pom has much dependencies like servlet api, jta api, ejb spec api, etc. So, just changed to 1.1-beta-2.
However, probably we need to change the version to the latest later.

Modified:
    portals/applications/demo/trunk/pom.xml

Modified: portals/applications/demo/trunk/pom.xml
URL: http://svn.apache.org/viewvc/portals/applications/demo/trunk/pom.xml?rev=765883&r1=765882&r2=765883&view=diff
==============================================================================
--- portals/applications/demo/trunk/pom.xml (original)
+++ portals/applications/demo/trunk/pom.xml Fri Apr 17 07:42:56 2009
@@ -41,6 +41,7 @@
     <portals.applications.apa-gems.version>1.0-SNAPSHOT</portals.applications.apa-gems.version>
     <velocity.version>1.5</velocity.version>
     <velocity-tools.version>1.3</velocity-tools.version>
+    <org.apache.portals.bridges.common.version>1.0.4</org.apache.portals.bridges.common.version>
     <org.apache.portals.bridges.velocity.version>1.0.4</org.apache.portals.bridges.velocity.version>
     <org.apache.portals.bridges.groovy.version>1.0.4</org.apache.portals.bridges.groovy.version>
     <commons-logging.version>1.1</commons-logging.version>
@@ -56,7 +57,7 @@
     <asm.version>2.2</asm.version>
     <antlr.version>2.7.6</antlr.version>
     <castor.version>1.1.1-xml</castor.version>
-    <groovy.version>1.0</groovy.version>
+    <groovy.version>1.1-beta-2</groovy.version>
     <commons-collections.version>3.2</commons-collections.version>    
     <commons-digester.version>1.8</commons-digester.version>
     <commons-lang.version>2.1</commons-lang.version>        
@@ -122,6 +123,12 @@
     </dependency>
     <dependency>
       <groupId>org.apache.portals.bridges</groupId>
+      <artifactId>portals-bridges-common</artifactId>
+      <version>${org.apache.portals.bridges.common.version}</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.portals.bridges</groupId>
       <artifactId>portals-bridges-velocity</artifactId>
       <version>${org.apache.portals.bridges.velocity.version}</version>
     </dependency>
@@ -129,6 +136,12 @@
       <groupId>org.apache.portals.bridges</groupId>
       <artifactId>portals-bridges-groovy</artifactId>
       <version>${org.apache.portals.bridges.groovy.version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>org.apache.portals.jetspeed-2</groupId>
+          <artifactId>jetspeed-api</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>velocity-tools</groupId>