Author: bfoster
Date: Thu Dec 16 17:49:21 2010
New Revision: 1050074

URL: http://svn.apache.org/viewvc?rev=1050074&view=rev
Log:

- removed use of ${oodt.version}
- remove <version> tag for each module – it will inherit from oodt-core (i.e. 
parent pom)
- set all oodt component dependency versions to ${project.parent.version}

---------------------

OODT-63

Modified:
    oodt/trunk/CHANGES.txt
    oodt/trunk/app/fmbrowser/pom.xml
    oodt/trunk/catalog/pom.xml
    oodt/trunk/commons/pom.xml
    oodt/trunk/core/pom.xml
    oodt/trunk/crawler/pom.xml
    oodt/trunk/curator/pom.xml
    oodt/trunk/filemgr/pom.xml
    oodt/trunk/grid/pom.xml
    oodt/trunk/metadata/pom.xml
    oodt/trunk/mvn/plugins/cas-install/pom.xml
    oodt/trunk/opendapps/pom.xml
    oodt/trunk/pcs/input/pom.xml
    oodt/trunk/pge/pom.xml
    oodt/trunk/pom.xml
    oodt/trunk/product/pom.xml
    oodt/trunk/profile/pom.xml
    oodt/trunk/pushpull/pom.xml
    oodt/trunk/resource/pom.xml
    oodt/trunk/sso/pom.xml
    oodt/trunk/webapp/filemgr/pom.xml
    oodt/trunk/webapp/fmprod/pom.xml
    oodt/trunk/webapp/workflow/pom.xml
    oodt/trunk/workflow/pom.xml
    oodt/trunk/xmlps/pom.xml
    oodt/trunk/xmlquery/pom.xml

Modified: oodt/trunk/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/oodt/trunk/CHANGES.txt?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/CHANGES.txt (original)
+++ oodt/trunk/CHANGES.txt Thu Dec 16 17:49:21 2010
@@ -4,6 +4,8 @@ Apache OODT Change Log
 Release 0.2 (Current Development)
 --------------------------------------------
 
+* OODT-63 Use hard coded version numbers in shared component POMs so that MVN 
install works (bfoster)
+
 * OODT-85 XML configurator for opendap crashes on null pointer exceptions for 
some datasets (Victor Hwang via mattmann)
 
 * OODT-78 Ability for Resource Manager to dynamically add/remove nodes and 
modify queues at run-time (bfoster)

Modified: oodt/trunk/app/fmbrowser/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/app/fmbrowser/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/app/fmbrowser/pom.xml (original)
+++ oodt/trunk/app/fmbrowser/pom.xml Thu Dec 16 17:49:21 2010
@@ -20,7 +20,7 @@ the License.
   <parent>
     <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-core</artifactId>
-    <version>${oodt.version}</version>
+    <version>0.2-incubating</version>
     <relativePath>../../core/pom.xml</relativePath>
   </parent>
   <artifactId>cas-fm-browser</artifactId>
@@ -36,12 +36,12 @@ the License.
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-metadata</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-filemgr</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.poi</groupId>

Modified: oodt/trunk/catalog/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/catalog/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/catalog/pom.xml (original)
+++ oodt/trunk/catalog/pom.xml Thu Dec 16 17:49:21 2010
@@ -22,12 +22,11 @@
   <parent>
     <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-core</artifactId>
-    <version>${oodt.version}</version>
+    <version>0.2-incubating</version>
     <relativePath>../core/pom.xml</relativePath>
   </parent>
   <artifactId>cas-catalog</artifactId>
   <name>OODT CAS Virtual Catalog and Integration Service.</name>
-  <version>${oodt.version}</version>
   <description>CAS Catalog is an effort to virtualize underlying 
   catalogs for use in the CAS system. Heterogeneous catalog models 
   are mapped to a common dictionary, and then integrated locally so that
@@ -113,12 +112,12 @@
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>oodt-commons</artifactId>
-      <version>${oodt.version}</version>    
+      <version>${project.parent.version}</version>    
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-metadata</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>  
     <dependency>
       <groupId>commons-io</groupId>

Modified: oodt/trunk/commons/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/commons/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/commons/pom.xml (original)
+++ oodt/trunk/commons/pom.xml Thu Dec 16 17:49:21 2010
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-core</artifactId>
-    <version>${oodt.version}</version>
+    <version>0.2-incubating</version>
     <relativePath>../core/pom.xml</relativePath>
   </parent>
   <artifactId>oodt-commons</artifactId>

Modified: oodt/trunk/core/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/core/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/core/pom.xml (original)
+++ oodt/trunk/core/pom.xml Thu Dec 16 17:49:21 2010
@@ -19,20 +19,19 @@ the License.
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-core</artifactId>
-    <version>${oodt.version}</version>
+    <version>0.2-incubating</version>
     <name>OODT Core</name>
     <packaging>pom</packaging>
     <properties>
-        <oodt.version>0.2-incubating</oodt.version>
         
<organizationLogo>http://www.apache.org/images/feather.gif</organizationLogo>
-        <logo>/images/${pom.artifactId}.jpg</logo>
-        <xdocVersion>${pom.version}</xdocVersion>
+        <logo>/images/${project.artifactId}.jpg</logo>
+        <xdocVersion>${project.version}</xdocVersion>
         <genDownloadLinks>false</genDownloadLinks>
         <docsSrc>${basedir}/src/site/xdoc</docsSrc>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
     </properties>
-    <url>http://incubator.apache.org/oodt/${pom.artifactId}</url>
+    <url>http://incubator.apache.org/oodt/${project.artifactId}</url>
     <issueManagement>
         <system>JIRA</system>
         <url>https://issues.apache.org/jira/browse/OODT</url>
@@ -242,9 +241,9 @@ the License.
         </license>
     </licenses>
     <scm>
-        
<connection>scm:svn:http://svn.apache.org/repos/asf/incubator/oodt/trunk/${pom.artifactId}</connection>
-        
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/oodt/trunk/${pom.artifactId}</developerConnection>
-        
<url>http://svn.apache.org/viewvc/incubator/oodt/trunk/${pom.artifactId}/</url>
+        
<connection>scm:svn:http://svn.apache.org/repos/asf/incubator/oodt/trunk/${project.artifactId}</connection>
+        
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/oodt/trunk/${project.artifactId}</developerConnection>
+        
<url>http://svn.apache.org/viewvc/incubator/oodt/trunk/${project.artifactId}/</url>
         <tag>HEAD</tag>
     </scm>
     <organization>

Modified: oodt/trunk/crawler/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/crawler/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/crawler/pom.xml (original)
+++ oodt/trunk/crawler/pom.xml Thu Dec 16 17:49:21 2010
@@ -23,12 +23,11 @@ the License.
   <parent>
     <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-core</artifactId>
-    <version>${oodt.version}</version>
+    <version>0.2-incubating</version>
     <relativePath>../core/pom.xml</relativePath>
   </parent>
   <artifactId>cas-crawler</artifactId>
   <name>Catalog and Archive Crawling Framework</name>
-  <version>${oodt.version}</version>
   <description>The Catalog and Archive Service Crawling 
Framework.</description>
   <build>
     <plugins>
@@ -111,22 +110,22 @@ the License.
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>oodt-commons</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>    
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-metadata</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-filemgr</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-workflow</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.tika</groupId>

Modified: oodt/trunk/curator/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/curator/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/curator/pom.xml (original)
+++ oodt/trunk/curator/pom.xml Thu Dec 16 17:49:21 2010
@@ -22,13 +22,12 @@ the License.
   <parent>
     <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-core</artifactId>
-    <version>${oodt.version}</version>
+    <version>0.2-incubating</version>
     <relativePath>../core/pom.xml</relativePath>
   </parent>
   <groupId>org.apache.oodt</groupId>
   <artifactId>cas-curator</artifactId>
   <packaging>war</packaging>
-  <version>${oodt.version}</version>
   <name>CAS Curation Interface</name>
   <description>A web application for managing policy for products and files 
and metadata that have been ingested via the CAS component.</description>
   <build>
@@ -125,22 +124,22 @@ the License.
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-filemgr</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>oodt-sso</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-crawler</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-metadata</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
       <type>jar</type>
     </dependency>
     <dependency>

Modified: oodt/trunk/filemgr/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/filemgr/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/filemgr/pom.xml (original)
+++ oodt/trunk/filemgr/pom.xml Thu Dec 16 17:49:21 2010
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-core</artifactId>
-    <version>${oodt.version}</version>
+    <version>0.2-incubating</version>
     <relativePath>../core/pom.xml</relativePath>
   </parent>
   <artifactId>cas-filemgr</artifactId>
@@ -112,12 +112,12 @@
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>oodt-commons</artifactId>
-      <version>${oodt.version}</version>    
+      <version>${project.parent.version}</version>    
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-metadata</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>commons-logging</groupId>

Modified: oodt/trunk/grid/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/grid/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/grid/pom.xml (original)
+++ oodt/trunk/grid/pom.xml Thu Dec 16 17:49:21 2010
@@ -22,7 +22,7 @@ the License.
   <parent>
     <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-core</artifactId>
-    <version>${oodt.version}</version>
+    <version>0.2-incubating</version>
     <relativePath>../core/pom.xml</relativePath>
   </parent>
   <artifactId>web-grid</artifactId>
@@ -74,22 +74,22 @@ the License.
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>oodt-commons</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>oodt-profile</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>oodt-product</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>oodt-xmlquery</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>com.hp.hpl.jena</groupId>

Modified: oodt/trunk/metadata/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/metadata/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/metadata/pom.xml (original)
+++ oodt/trunk/metadata/pom.xml Thu Dec 16 17:49:21 2010
@@ -23,7 +23,7 @@ the License.
   <parent>
     <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-core</artifactId>
-    <version>${oodt.version}</version>
+    <version>0.2-incubating</version>
     <relativePath>../core/pom.xml</relativePath>
   </parent>
   <artifactId>cas-metadata</artifactId>
@@ -121,12 +121,12 @@ the License.
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>oodt-commons</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>pcs-input</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>commons-lang</groupId>

Modified: oodt/trunk/mvn/plugins/cas-install/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/mvn/plugins/cas-install/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/mvn/plugins/cas-install/pom.xml (original)
+++ oodt/trunk/mvn/plugins/cas-install/pom.xml Thu Dec 16 17:49:21 2010
@@ -22,12 +22,11 @@ the License.
   <parent>
     <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-core</artifactId>
-    <version>${oodt.version}</version>
+    <version>0.2-incubating</version>
     <relativePath>../../../core/pom.xml</relativePath>
   </parent>
   <artifactId>maven-cas-install-plugin</artifactId>
   <packaging>maven-plugin</packaging>
-  <version>${oodt.version}</version>
   <name>CAS Installer Maven Mojo</name>
   <dependencies>
     <dependency>
@@ -38,7 +37,7 @@ the License.
    <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-metadata</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>junit</groupId>

Modified: oodt/trunk/opendapps/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/opendapps/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/opendapps/pom.xml (original)
+++ oodt/trunk/opendapps/pom.xml Thu Dec 16 17:49:21 2010
@@ -10,7 +10,6 @@ $Id$
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>opendapps</artifactId>
-  <version>1.0</version>
   <name>Apache OODT Configurable OPeNDAP Profile Server</name>
   <description>A generic, configurable Apache OODT profile server
   implementation that easily connects to OPeNDAP data sources. Connections 
@@ -20,7 +19,7 @@ $Id$
   <parent>
     <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-core</artifactId>
-    <version>0.1-incubating</version>
+    <version>0.2-incubating</version>
   </parent>
   <build>
     <plugins>
@@ -43,12 +42,12 @@ $Id$
    <dependency>
     <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-profile</artifactId>
-    <version>0.1-incubating</version>
+    <version>${project.parent.version}</version>
    </dependency>
    <dependency>
     <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-xmlquery</artifactId>
-    <version>0.1-incubating</version>
+    <version>${project.parent.version}</version>
    </dependency>
   </dependencies>
 </project>

Modified: oodt/trunk/pcs/input/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/pcs/input/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/pcs/input/pom.xml (original)
+++ oodt/trunk/pcs/input/pom.xml Thu Dec 16 17:49:21 2010
@@ -24,7 +24,7 @@ the License.
   <parent>
     <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-core</artifactId>
-    <version>${oodt.version}</version>
+    <version>0.2-incubating</version>
     <relativePath>../../core/pom.xml</relativePath>
   </parent>
   <name>Process Control System Input Data Package</name>
@@ -68,7 +68,7 @@ the License.
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>oodt-commons</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>junit</groupId>

Modified: oodt/trunk/pge/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/pge/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/pge/pom.xml (original)
+++ oodt/trunk/pge/pom.xml Thu Dec 16 17:49:21 2010
@@ -23,12 +23,11 @@ the License.
   <parent>
     <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-core</artifactId>
-    <version>${oodt.version}</version>
+    <version>0.2-incubating</version>
     <relativePath>../core/pom.xml</relativePath>
   </parent>
   <artifactId>cas-pge</artifactId>
   <name>CAS PGE Adaptor Framework</name>
-  <version>${oodt.version}</version>
   <description>Allows data processing jobs not written in comformance with the
         PCS PGE interface to be run within the PCS.</description>
  <build>
@@ -91,27 +90,27 @@ the License.
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-metadata</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>oodt-commons</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>    
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-filemgr</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-workflow</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-crawler</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.tika</groupId>

Modified: oodt/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/pom.xml (original)
+++ oodt/trunk/pom.xml Thu Dec 16 17:49:21 2010
@@ -23,7 +23,7 @@ the License.
     <parent>
         <groupId>org.apache.oodt</groupId>
         <artifactId>oodt-core</artifactId>
-        <version>${oodt.version}</version>
+        <version>0.2-incubating</version>
         <relativePath>core/pom.xml</relativePath>
     </parent>
 

Modified: oodt/trunk/product/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/product/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/product/pom.xml (original)
+++ oodt/trunk/product/pom.xml Thu Dec 16 17:49:21 2010
@@ -20,12 +20,11 @@
     <parent>
         <groupId>org.apache.oodt</groupId>
         <artifactId>oodt-core</artifactId>
-        <version>${oodt.version}</version>
+        <version>0.2-incubating</version>
         <relativePath>../core/pom.xml</relativePath>
     </parent>
     <artifactId>oodt-product</artifactId>
     <name>Product Service</name>
-    <version>${oodt.version}</version>
     <description>
         The Product Service provides access to data products.  Products can be
         scientific datasets, images, documents, or anything with an electronic
@@ -84,7 +83,7 @@
         <dependency>
             <groupId>org.apache.oodt</groupId>
             <artifactId>oodt-commons</artifactId>
-            <version>${oodt.version}</version>
+            <version>${project.parent.version}</version>
         </dependency>
         <dependency>
             <groupId>commons-io</groupId>
@@ -104,7 +103,7 @@
         <dependency>
             <groupId>org.apache.oodt</groupId>
             <artifactId>oodt-xmlquery</artifactId>
-            <version>${oodt.version}</version>
+            <version>${project.parent.version}</version>
         </dependency>
         <dependency>
             <groupId>servletapi</groupId>

Modified: oodt/trunk/profile/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/profile/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/profile/pom.xml (original)
+++ oodt/trunk/profile/pom.xml Thu Dec 16 17:49:21 2010
@@ -20,12 +20,11 @@
   <parent>
     <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-core</artifactId>
-    <version>${oodt.version}</version>
+    <version>0.2-incubating</version>
     <relativePath>../core/pom.xml</relativePath>
   </parent>
   <artifactId>oodt-profile</artifactId>
   <name>Profile Service</name>
-  <version>${oodt.version}</version>
   <description>The Profile Service describes and locates resources using 
metadata
     descriptions.  These descriptions, called profiles, tell of a
     resource's inception, composition, and location using a mix of
@@ -101,17 +100,17 @@
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>oodt-commons</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>oodt-xmlquery</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-filemgr</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>com.hp.hpl.jena</groupId>

Modified: oodt/trunk/pushpull/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/pushpull/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/pushpull/pom.xml (original)
+++ oodt/trunk/pushpull/pom.xml Thu Dec 16 17:49:21 2010
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-core</artifactId>
-    <version>${oodt.version}</version>
+    <version>0.2-incubating</version>
     <relativePath>../core/pom.xml</relativePath>
   </parent> 
   <artifactId>cas-pushpull</artifactId>
@@ -88,12 +88,12 @@
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-filemgr</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-metadata</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>commons-codec</groupId>

Modified: oodt/trunk/resource/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/resource/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/resource/pom.xml (original)
+++ oodt/trunk/resource/pom.xml Thu Dec 16 17:49:21 2010
@@ -22,7 +22,7 @@ the License.
   <parent>
     <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-core</artifactId>
-    <version>${oodt.version}</version>
+    <version>0.2-incubating</version>
     <relativePath>../core/pom.xml</relativePath>
   </parent>
   <artifactId>cas-resource</artifactId>
@@ -80,12 +80,12 @@ the License.
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>oodt-commons</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>   
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-metadata</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>commons-logging</groupId>

Modified: oodt/trunk/sso/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/sso/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/sso/pom.xml (original)
+++ oodt/trunk/sso/pom.xml Thu Dec 16 17:49:21 2010
@@ -22,7 +22,7 @@ the License.
   <parent>
     <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-core</artifactId>
-    <version>${oodt.version}</version>
+    <version>0.2-incubating</version>
     <relativePath>../core/pom.xml</relativePath>
   </parent>
   <artifactId>oodt-sso</artifactId>

Modified: oodt/trunk/webapp/filemgr/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/webapp/filemgr/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/webapp/filemgr/pom.xml (original)
+++ oodt/trunk/webapp/filemgr/pom.xml Thu Dec 16 17:49:21 2010
@@ -22,13 +22,12 @@ the License.
   <parent>
     <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-core</artifactId>
-    <version>${oodt.version}</version>
+    <version>0.2-incubating</version>
     <relativePath>../../core/pom.xml</relativePath>
   </parent>
   <packaging>war</packaging>
   <artifactId>cas-fm-webapp</artifactId>
   <name>CAS File Manager Webapp Application</name>
-  <version>${oodt.version}</version>
   <description>A webapp for managing products and files and metadata that have 
been
     ingested via the CAS File Manager component.</description>
   <build>
@@ -51,17 +50,17 @@ the License.
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>oodt-commons</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>    
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-metadata</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-filemgr</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>xmlrpc</groupId>

Modified: oodt/trunk/webapp/fmprod/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/webapp/fmprod/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/webapp/fmprod/pom.xml (original)
+++ oodt/trunk/webapp/fmprod/pom.xml Thu Dec 16 17:49:21 2010
@@ -22,12 +22,11 @@ the License.
   <parent>
     <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-core</artifactId>
-    <version>${oodt.version}</version>
+    <version>0.2-incubating</version>
     <relativePath>../../core/pom.xml</relativePath>
   </parent>
   <artifactId>cas-product</artifactId>
   <packaging>war</packaging>
-  <version>${oodt.version}</version>
   <name>CAS Product Server</name>
   <description>This project builds on top of the CAS file management component 
and exposes its
      underlying data delivery capabilities using the OODT ProductServer 
component. All-in-all,
@@ -103,30 +102,30 @@ the License.
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-filemgr</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-metadata</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>oodt-commons</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>oodt-product</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>oodt-xmlquery</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
       <scope>compile</scope>
     </dependency>
     <dependency>

Modified: oodt/trunk/webapp/workflow/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/webapp/workflow/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/webapp/workflow/pom.xml (original)
+++ oodt/trunk/webapp/workflow/pom.xml Thu Dec 16 17:49:21 2010
@@ -22,13 +22,12 @@ the License.
   <parent>
     <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-core</artifactId>
-    <version>${oodt.version}</version>
+    <version>0.2-incubating</version>
     <relativePath>../../core/pom.xml</relativePath>
   </parent>
   <packaging>war</packaging>
   <artifactId>cas-wm-webapp</artifactId>
   <name>CAS Workflow Monitor Web Application</name>
-  <version>${oodt.version}</version>
   <description>A webapp for monitoring workflows being executed and managed 
from the
     Workflow Manager.</description>
   <build>
@@ -92,17 +91,17 @@ the License.
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>oodt-commons</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-metadata</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-workflow</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>xmlrpc</groupId>

Modified: oodt/trunk/workflow/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/workflow/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/workflow/pom.xml (original)
+++ oodt/trunk/workflow/pom.xml Thu Dec 16 17:49:21 2010
@@ -23,7 +23,7 @@ the License.
   <parent>
     <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-core</artifactId>
-    <version>${oodt.version}</version>
+    <version>0.2-incubating</version>
     <relativePath>../core/pom.xml</relativePath>
   </parent>
   <artifactId>cas-workflow</artifactId>
@@ -124,17 +124,17 @@ the License.
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>oodt-commons</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-metadata</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>cas-resource</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
         <groupId>concurrent</groupId>

Modified: oodt/trunk/xmlps/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/xmlps/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/xmlps/pom.xml (original)
+++ oodt/trunk/xmlps/pom.xml Thu Dec 16 17:49:21 2010
@@ -23,7 +23,7 @@
        <parent>
                <groupId>org.apache.oodt</groupId>
                <artifactId>oodt-core</artifactId>
-               <version>${oodt.version}</version>
+               <version>0.2-incubating</version>
                <relativePath>../core/pom.xml</relativePath>
        </parent>
        <artifactId>oodt-xmlps</artifactId>
@@ -79,29 +79,29 @@
                <dependency>
                        <groupId>org.apache.oodt</groupId>
                        <artifactId>oodt-commons</artifactId>
-                       <version>${oodt.version}</version>
+                       <version>${project.parent.version}</version>
                </dependency>
                <dependency>
                        <groupId>org.apache.oodt</groupId>
                        <artifactId>oodt-xmlquery</artifactId>
-                       <version>${oodt.version}</version>
+                       <version>${project.parent.version}</version>
                </dependency>
                <dependency>
                        <groupId>org.apache.oodt</groupId>
                        <artifactId>cas-metadata</artifactId>
-                       <version>${oodt.version}</version>
+                       <version>${project.parent.version}</version>
                        <optional />
                </dependency>
                <dependency>
                        <groupId>org.apache.oodt</groupId>
                        <artifactId>oodt-product</artifactId>
-                       <version>${oodt.version}</version>
+                       <version>${project.parent.version}</version>
                        <optional />
                </dependency>
                <dependency>
                        <groupId>org.apache.oodt</groupId>
                        <artifactId>oodt-profile</artifactId>
-                       <version>${oodt.version}</version>
+                       <version>${project.parent.version}</version>
                        <optional />
                </dependency>
                <dependency>

Modified: oodt/trunk/xmlquery/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/xmlquery/pom.xml?rev=1050074&r1=1050073&r2=1050074&view=diff
==============================================================================
--- oodt/trunk/xmlquery/pom.xml (original)
+++ oodt/trunk/xmlquery/pom.xml Thu Dec 16 17:49:21 2010
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-core</artifactId>
-    <version>${oodt.version}</version>
+    <version>0.2-incubating</version>
     <relativePath>../core/pom.xml</relativePath>
   </parent>
   <artifactId>oodt-xmlquery</artifactId>
@@ -93,7 +93,7 @@
     <dependency>
       <groupId>org.apache.oodt</groupId>
       <artifactId>oodt-commons</artifactId>
-      <version>${oodt.version}</version>
+      <version>${project.parent.version}</version>
     </dependency>
     <dependency>
       <groupId>junit</groupId>


Reply via email to