You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by la...@apache.org on 2011/09/08 17:41:21 UTC

svn commit: r1166759 - in /incubator/airavata/trunk/modules: commons/ commons/gfac-schema/ commons/workflow-tracking/ distribution/ distribution/src/main/assembly/ gfac-axis2-artifacts/ gfac-axis2/ gfac-core/ xbaya-gui/ xregistry/

Author: lahiru
Date: Thu Sep  8 15:41:21 2011
New Revision: 1166759

URL: http://svn.apache.org/viewvc?rev=1166759&view=rev
Log:
pom structure changes by using parent poms.

Modified:
    incubator/airavata/trunk/modules/commons/gfac-schema/pom.xml
    incubator/airavata/trunk/modules/commons/pom.xml
    incubator/airavata/trunk/modules/commons/workflow-tracking/pom.xml
    incubator/airavata/trunk/modules/distribution/pom.xml
    incubator/airavata/trunk/modules/distribution/src/main/assembly/bin-assembly.xml
    incubator/airavata/trunk/modules/gfac-axis2-artifacts/pom.xml
    incubator/airavata/trunk/modules/gfac-axis2/pom.xml
    incubator/airavata/trunk/modules/gfac-core/pom.xml
    incubator/airavata/trunk/modules/xbaya-gui/pom.xml
    incubator/airavata/trunk/modules/xregistry/pom.xml

Modified: incubator/airavata/trunk/modules/commons/gfac-schema/pom.xml
URL: http://svn.apache.org/viewvc/incubator/airavata/trunk/modules/commons/gfac-schema/pom.xml?rev=1166759&r1=1166758&r2=1166759&view=diff
==============================================================================
--- incubator/airavata/trunk/modules/commons/gfac-schema/pom.xml (original)
+++ incubator/airavata/trunk/modules/commons/gfac-schema/pom.xml Thu Sep  8 15:41:21 2011
@@ -13,23 +13,19 @@
 
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+   <parent>
+		<artifactId>airavata-commons</artifactId>
+		<groupId>airavata</groupId>
+		<version>0.0.1-SNAPSHOT</version>
+		<relativePath>../pom.xml</relativePath>
+	</parent>
 	<modelVersion>4.0.0</modelVersion>
 	<groupId>airavata</groupId>
 	<artifactId>airavata-gfac-schema-utils</artifactId>
 	<packaging>jar</packaging>
-	<version>0.0.1-SNAPSHOT</version>
 	<name>Airavata GFac Schema Utilities</name>
 	<url>http://incubator.apache.org/airavata/</url>
-	<repositories>
-		<repository>
-			<name>ogce.m2.all</name>
-			<id>ogce.m2.all</id>
-			<url>http://community.ucs.indiana.edu:9090/archiva/repository/ogce.m2.all</url>
-			<snapshots>
-				<updatePolicy>daily</updatePolicy>
-			</snapshots>
-		</repository>
-	</repositories>
+
 	<dependencies>
 		<dependency>
 			<groupId>commons-logging</groupId>

Modified: incubator/airavata/trunk/modules/commons/pom.xml
URL: http://svn.apache.org/viewvc/incubator/airavata/trunk/modules/commons/pom.xml?rev=1166759&r1=1166758&r2=1166759&view=diff
==============================================================================
--- incubator/airavata/trunk/modules/commons/pom.xml (original)
+++ incubator/airavata/trunk/modules/commons/pom.xml Thu Sep  8 15:41:21 2011
@@ -1,10 +1,17 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+    <parent>
+		<artifactId>airavata</artifactId>
+		<groupId>airavata</groupId>
+		<version>0.0.1-SNAPSHOT</version>
+		<relativePath>../../pom.xml</relativePath>
+	</parent>
+
     <modelVersion>4.0.0</modelVersion>
     <artifactId>airavata-commons</artifactId>
     <groupId>airavata</groupId>
-    <version>0.0.1-SNAPSHOT</version>
     <packaging>pom</packaging>
     <name>Airavat Commons</name>
     <url>http://maven.apache.org</url>

Modified: incubator/airavata/trunk/modules/commons/workflow-tracking/pom.xml
URL: http://svn.apache.org/viewvc/incubator/airavata/trunk/modules/commons/workflow-tracking/pom.xml?rev=1166759&r1=1166758&r2=1166759&view=diff
==============================================================================
--- incubator/airavata/trunk/modules/commons/workflow-tracking/pom.xml (original)
+++ incubator/airavata/trunk/modules/commons/workflow-tracking/pom.xml Thu Sep  8 15:41:21 2011
@@ -1,11 +1,17 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <parent>
+		<artifactId>airavata-commons</artifactId>
+		<groupId>airavata</groupId>
+		<version>0.0.1-SNAPSHOT</version>
+		<relativePath>../pom.xml</relativePath>
+	</parent>
+
     <modelVersion>4.0.0</modelVersion>
     <groupId>airavata</groupId>
     <artifactId>airavata-workflowtracking</artifactId>
     <packaging>jar</packaging>
-    <version>0.0.1-SNAPSHOT</version>
     <name>Airavata Workflow Tracking</name>
     <url>http://incubator.apache.org/airavata/</url>
 

Modified: incubator/airavata/trunk/modules/distribution/pom.xml
URL: http://svn.apache.org/viewvc/incubator/airavata/trunk/modules/distribution/pom.xml?rev=1166759&r1=1166758&r2=1166759&view=diff
==============================================================================
--- incubator/airavata/trunk/modules/distribution/pom.xml (original)
+++ incubator/airavata/trunk/modules/distribution/pom.xml Thu Sep  8 15:41:21 2011
@@ -6,6 +6,7 @@
 		<version>0.0.1-SNAPSHOT</version>
 		<relativePath>../../pom.xml</relativePath>
 	</parent>
+
 	<modelVersion>4.0.0</modelVersion>
 	<groupId>Airavata</groupId>
 	<artifactId>distribution</artifactId>

Modified: incubator/airavata/trunk/modules/distribution/src/main/assembly/bin-assembly.xml
URL: http://svn.apache.org/viewvc/incubator/airavata/trunk/modules/distribution/src/main/assembly/bin-assembly.xml?rev=1166759&r1=1166758&r2=1166759&view=diff
==============================================================================
--- incubator/airavata/trunk/modules/distribution/src/main/assembly/bin-assembly.xml (original)
+++ incubator/airavata/trunk/modules/distribution/src/main/assembly/bin-assembly.xml Thu Sep  8 15:41:21 2011
@@ -264,12 +264,21 @@
 			</includes>
 		</fileSet>
 		<fileSet>
+			<directory>../commons/gfac-schema/target</directory>
+			<outputDirectory>lib</outputDirectory>
+			<includes>
+				<include>*.jar</include>
+			</includes>
+		</fileSet>
+
+		<fileSet>
 			<directory>../gfac-axis2/src/main/resources/</directory>
 			<outputDirectory>standalone-server/conf</outputDirectory>
 			<includes>
 				<include>repository.properties</include>
 			</includes>
 		</fileSet>
+
 		<fileSet>
 			<directory>../gfac-core/src/main/resources</directory>
 			<outputDirectory>standalone-server/conf</outputDirectory>
@@ -326,6 +335,8 @@
                 <outputDirectory>lib</outputDirectory>
                 <includes>
                     <include>org.apache.jackrabbit:jackrabbit-standalone:jar</include>
+		    <include>xsul:xsul:jar</include>
+		    <include>xsul5-ogce:xsul5-2007-02-27:jar</include>
                 </includes>
                     </dependencySet>
         </dependencySets>

Modified: incubator/airavata/trunk/modules/gfac-axis2-artifacts/pom.xml
URL: http://svn.apache.org/viewvc/incubator/airavata/trunk/modules/gfac-axis2-artifacts/pom.xml?rev=1166759&r1=1166758&r2=1166759&view=diff
==============================================================================
--- incubator/airavata/trunk/modules/gfac-axis2-artifacts/pom.xml (original)
+++ incubator/airavata/trunk/modules/gfac-axis2-artifacts/pom.xml Thu Sep  8 15:41:21 2011
@@ -13,10 +13,16 @@
 
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+     <parent>
+		<artifactId>airavata</artifactId>
+		<groupId>airavata</groupId>
+		<version>0.0.1-SNAPSHOT</version>
+		<relativePath>../../pom.xml</relativePath>
+	</parent>
+
 	<modelVersion>4.0.0</modelVersion>
 	<groupId>airavata</groupId>
 	<artifactId>airavata-axis2-artifacts</artifactId>
-	<version>0.0.1-SNAPSHOT</version>
 	<name>GFac-Axis2-Artifacts</name>
 	<description>Axis2 Artifacts for Gfac funcationality</description>
 	<properties>
@@ -40,6 +46,7 @@
 			<artifactId>axiom-impl</artifactId>
 			<version>${axiom.version}</version>
 		</dependency>
+
 	</dependencies>
 <build>
 		<plugins>

Modified: incubator/airavata/trunk/modules/gfac-axis2/pom.xml
URL: http://svn.apache.org/viewvc/incubator/airavata/trunk/modules/gfac-axis2/pom.xml?rev=1166759&r1=1166758&r2=1166759&view=diff
==============================================================================
--- incubator/airavata/trunk/modules/gfac-axis2/pom.xml (original)
+++ incubator/airavata/trunk/modules/gfac-axis2/pom.xml Thu Sep  8 15:41:21 2011
@@ -13,23 +13,20 @@
 
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <parent>
+		<artifactId>airavata</artifactId>
+		<groupId>airavata</groupId>
+		<version>0.0.1-SNAPSHOT</version>
+		<relativePath>../../pom.xml</relativePath>
+	</parent>
+
 	<modelVersion>4.0.0</modelVersion>
 	<groupId>airavata</groupId>
 	<artifactId>airavata-gfac-axis2-interface</artifactId>
-	<version>0.0.1-SNAPSHOT</version>
 	<name>GFac-Axis2-Interface</name>
 	<description>Axis2 Interface to the GFac-Core</description>
 
-    <repositories>
-		<repository>
-			<name>ogce.m2.all</name>
-			<id>ogce.m2.all</id>
-			<url>http://community.ucs.indiana.edu:9090/archiva/repository/ogce.m2.all</url>
-			<snapshots>
-				<updatePolicy>daily</updatePolicy>
-			</snapshots>
-		</repository>
-	</repositories>
+
 	<properties>
 		<org.slf4j.version>1.6.1</org.slf4j.version>
 		<log4j.version>1.2.16</log4j.version>

Modified: incubator/airavata/trunk/modules/gfac-core/pom.xml
URL: http://svn.apache.org/viewvc/incubator/airavata/trunk/modules/gfac-core/pom.xml?rev=1166759&r1=1166758&r2=1166759&view=diff
==============================================================================
--- incubator/airavata/trunk/modules/gfac-core/pom.xml (original)
+++ incubator/airavata/trunk/modules/gfac-core/pom.xml Thu Sep  8 15:41:21 2011
@@ -13,26 +13,23 @@
 
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <parent>
+		<artifactId>airavata</artifactId>
+		<groupId>airavata</groupId>
+		<version>0.0.1-SNAPSHOT</version>
+		<relativePath>../../pom.xml</relativePath>
+	</parent>
+
     <modelVersion>4.0.0</modelVersion>
     <groupId>airavata</groupId>
     <artifactId>gfac-core</artifactId>
-    <version>0.0.1-SNAPSHOT</version>
     <name>GFac-Core</name>
     <description>The core GFAC functionality independent from any webservice implementation. </description>
     <properties>
         <org.slf4j.version>1.6.1</org.slf4j.version>
         <log4j.version>1.2.16</log4j.version>
     </properties>
-    <repositories>
-        <repository>
-            <name>ogce.m2.all</name>
-            <id>ogce.m2.all</id>
-            <url>http://community.ucs.indiana.edu:9090/archiva/repository/ogce.m2.all</url>
-            <snapshots>
-                <updatePolicy>daily</updatePolicy>
-            </snapshots>
-        </repository>
-    </repositories>
+
 
     <dependencies>
         <dependency>

Modified: incubator/airavata/trunk/modules/xbaya-gui/pom.xml
URL: http://svn.apache.org/viewvc/incubator/airavata/trunk/modules/xbaya-gui/pom.xml?rev=1166759&r1=1166758&r2=1166759&view=diff
==============================================================================
--- incubator/airavata/trunk/modules/xbaya-gui/pom.xml (original)
+++ incubator/airavata/trunk/modules/xbaya-gui/pom.xml Thu Sep  8 15:41:21 2011
@@ -13,11 +13,17 @@
 
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+   <parent>
+		<artifactId>airavata</artifactId>
+		<groupId>airavata</groupId>
+		<version>0.0.1-SNAPSHOT</version>
+		<relativePath>../../pom.xml</relativePath>
+	</parent>
+
 	<modelVersion>4.0.0</modelVersion>
 	<groupId>airavata</groupId>
 	<artifactId>airavata-xbaya-gui</artifactId>
 	<packaging>jar</packaging>
-	<version>0.0.1-SNAPSHOT</version>
 	<name>Airavata XBaya</name>
 	<url>http://incubator.apache.org/airavata/</url>
 

Modified: incubator/airavata/trunk/modules/xregistry/pom.xml
URL: http://svn.apache.org/viewvc/incubator/airavata/trunk/modules/xregistry/pom.xml?rev=1166759&r1=1166758&r2=1166759&view=diff
==============================================================================
--- incubator/airavata/trunk/modules/xregistry/pom.xml (original)
+++ incubator/airavata/trunk/modules/xregistry/pom.xml Thu Sep  8 15:41:21 2011
@@ -18,25 +18,20 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0"
 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+   <parent>
+		<artifactId>airavata</artifactId>
+		<groupId>airavata</groupId>
+		<version>0.0.1-SNAPSHOT</version>
+		<relativePath>../../pom.xml</relativePath>
+	</parent>
+
 	<modelVersion>4.0.0</modelVersion>
 	<groupId>xregistry</groupId>
 	<artifactId>xregistry</artifactId>
 	<packaging>jar</packaging>
-	<version>0.0.1-SNAPSHOT</version>
 	<name>Service Registry</name>
-	<repositories>
-		<repository>
-			<name>ogce.m2.all</name>
-			<id>ogce.m2.all</id>
-			<url>http://community.ucs.indiana.edu:9090/archiva/repository/ogce.m2.all</url>
-		</repository>
-		 <repository>
-            <id>ibiblio</id>
-            <name>ibiblio Repository</name>
-            <url>http://mirrors.ibiblio.org/pub/mirrors/maven2
-            </url>
-        </repository>
-	</repositories>
+
     <properties>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>