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:37:52 UTC

svn commit: r765880 - in /portals/applications/rss/trunk: pom.xml rss-jar/pom.xml rss-war/pom.xml

Author: woonsan
Date: Fri Apr 17 07:37:52 2009
New Revision: 765880

URL: http://svn.apache.org/viewvc?rev=765880&view=rev
Log:
Fixing parent pom and dependencies

Modified:
    portals/applications/rss/trunk/pom.xml
    portals/applications/rss/trunk/rss-jar/pom.xml
    portals/applications/rss/trunk/rss-war/pom.xml

Modified: portals/applications/rss/trunk/pom.xml
URL: http://svn.apache.org/viewvc/portals/applications/rss/trunk/pom.xml?rev=765880&r1=765879&r2=765880&view=diff
==============================================================================
--- portals/applications/rss/trunk/pom.xml (original)
+++ portals/applications/rss/trunk/pom.xml Fri Apr 17 07:37:52 2009
@@ -30,7 +30,7 @@
     <parent>
         <groupId>org.apache.portals</groupId>
         <artifactId>applications-pom</artifactId>
-        <version>1.0-SNAPSHOT</version>
+        <version>1.0</version>
     </parent>
     
     <groupId>org.apache.portals.applications</groupId>

Modified: portals/applications/rss/trunk/rss-jar/pom.xml
URL: http://svn.apache.org/viewvc/portals/applications/rss/trunk/rss-jar/pom.xml?rev=765880&r1=765879&r2=765880&view=diff
==============================================================================
--- portals/applications/rss/trunk/rss-jar/pom.xml (original)
+++ portals/applications/rss/trunk/rss-jar/pom.xml Fri Apr 17 07:37:52 2009
@@ -36,6 +36,7 @@
 	<properties>
 		<portlet-api.version>2.0</portlet-api.version>
 		<javax.servlet.version>2.4</javax.servlet.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>
 		<spring.version>2.5.2</spring.version>
 		<velocity.version>1.5</velocity.version>
@@ -46,8 +47,6 @@
 		<commons-logging.version>1.1</commons-logging.version>
 		<rome.version>0.8</rome.version>
 		<jdom.version>1.0</jdom.version>
-		<portlet-api.version>1.0</portlet-api.version>
-		<javax.servlet.version>2.4</javax.servlet.version>
 	</properties>
 
 	<!-- Dependencies -->
@@ -67,6 +66,12 @@
 			<version>${javax.servlet.version}</version>
 			<scope>provided</scope>
 		</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>

Modified: portals/applications/rss/trunk/rss-war/pom.xml
URL: http://svn.apache.org/viewvc/portals/applications/rss/trunk/rss-war/pom.xml?rev=765880&r1=765879&r2=765880&view=diff
==============================================================================
--- portals/applications/rss/trunk/rss-war/pom.xml (original)
+++ portals/applications/rss/trunk/rss-war/pom.xml Fri Apr 17 07:37:52 2009
@@ -34,6 +34,7 @@
 
 	<!-- Dependencies -->
 	<properties>
+        <org.apache.portals.bridges.common.version>1.0.4</org.apache.portals.bridges.common.version>
 		<velocity-tools.version>1.3</velocity-tools.version>
 		<commons-digester.version>1.8</commons-digester.version>
 		<commons-lang.version>2.1</commons-lang.version>
@@ -45,6 +46,13 @@
 
 		<!-- Runtime Dependencies -->
 
+        <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>${pom.groupId}</groupId>
 			<artifactId>apa-rss-jar</artifactId>