You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oodt.apache.org by wo...@apache.org on 2010/07/27 07:16:16 UTC

svn commit: r979536 - /incubator/oodt/trunk/catalog/pom.xml

Author: woollard
Date: Tue Jul 27 05:16:16 2010
New Revision: 979536

URL: http://svn.apache.org/viewvc?rev=979536&view=rev
Log:
fixes to pom file, addition of rat verification phase for cas-catalog. toward OODT-3. Note that the present dependencies include a jar that is not publicly available.

Modified:
    incubator/oodt/trunk/catalog/pom.xml

Modified: incubator/oodt/trunk/catalog/pom.xml
URL: http://svn.apache.org/viewvc/incubator/oodt/trunk/catalog/pom.xml?rev=979536&r1=979535&r2=979536&view=diff
==============================================================================
--- incubator/oodt/trunk/catalog/pom.xml (original)
+++ incubator/oodt/trunk/catalog/pom.xml Tue Jul 27 05:16:16 2010
@@ -20,13 +20,14 @@
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
-    <groupId>gov.nasa.jpl.oodt</groupId>
+    <groupId>org.apache.oodt</groupId>
     <artifactId>oodt-core</artifactId>
-    <version>2.0</version>
+    <version>${oodt.version}</version>
+    <relativePath>../core/pom.xml</relativePath>
   </parent>
   <artifactId>cas-catalog</artifactId>
   <name>Catalog Component</name>
-  <version>1.0.0-dev</version>
+  <version>${oodt.version}</version>
   <description></description>
   <build>
     <plugins>
@@ -49,6 +50,18 @@
           </execution>
         </executions>
       </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>rat-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>verify</phase>
+            <goals>
+              <goal>check</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
     </plugins>
     <resources>
       <resource>
@@ -77,21 +90,16 @@
   </ciManagement>
   <dependencies>
     <dependency>
-      <groupId>gov.nasa.jpl.oodt</groupId>
-      <artifactId>cas-commons</artifactId>
-      <version>1.2.0-dev</version>    
+      <groupId>org.apache.oodt</groupId>
+      <artifactId>oodt-commons</artifactId>
+      <version>${oodt.version}</version>    
     </dependency>
     <dependency>
-      <groupId>gov.nasa.jpl.oodt</groupId>
+      <groupId>org.apache.oodt</groupId>
       <artifactId>cas-metadata</artifactId>
-      <version>2.0.0-dev</version>
+      <version>${oodt.version}</version>
     </dependency>  
     <dependency>
-      <groupId>gov.nasa.jpl.oodt</groupId>
-      <artifactId>edm-commons</artifactId>
-      <version>2.2.11-dev</version>
-    </dependency>
-    <dependency>
       <groupId>commons-io</groupId>
       <artifactId>commons-io</artifactId>
       <version>1.1</version>