You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ra...@apache.org on 2011/07/25 16:30:49 UTC

svn commit: r1150721 - /incubator/airavata/trunk/pom.xml

Author: raminder
Date: Mon Jul 25 14:30:48 2011
New Revision: 1150721

URL: http://svn.apache.org/viewvc?rev=1150721&view=rev
Log:
Added a parent pom for all the project to build/test all the projects. This also helps to import all the project using Eclipse M2 plugin. Right click on Project explorer > import > Existing Maven projects and select truck location.

Added:
    incubator/airavata/trunk/pom.xml

Added: incubator/airavata/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/airavata/trunk/pom.xml?rev=1150721&view=auto
==============================================================================
--- incubator/airavata/trunk/pom.xml (added)
+++ incubator/airavata/trunk/pom.xml Mon Jul 25 14:30:48 2011
@@ -0,0 +1,127 @@
+<?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">
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>Airavata</artifactId>
+    <groupId>Airavata</groupId>
+    <version>0.0.1-SNAPSHOT</version>
+    <packaging>pom</packaging>
+    <name>Airavata</name>
+    <url>http://incubator.apache.org/airavata/</url>
+    <properties>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+        <airavata.version>0.0.1-SNAPSHOT</airavata.version>
+    </properties>
+    <repositories>
+        <repository>
+            <id>ogce.m2.all</id>
+            <name>ogce.m2.all</name>
+            <url>http://community.ucs.indiana.edu:9090/archiva/repository/ogce.m2.all</url>
+        </repository>
+        <repository>
+            <id>m2-snapshot-repository</id>
+            <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+            <releases>
+            </releases>
+            <snapshots>
+                <enabled>false</enabled>
+            </snapshots>
+        </repository>
+        <repository>
+            <id>ibiblio</id>
+            <name>ibiblio Repository</name>
+            <url>http://mirrors.ibiblio.org/pub/mirrors/maven2
+            </url>
+        </repository>
+        <repository>
+            <id>maven 2 java.net</id>
+            <name>2 java.net Maven Repository</name>
+            <url>http://download.java.net/maven/2/
+            </url>
+            <layout>default</layout>
+        </repository>
+        <repository>
+            <id>apache-repo</id>
+            <name>Apache Yfilter repo</name>
+            <url>http://people.apache.org/~lahiru/maven-repo</url>
+        </repository>
+    </repositories>
+    <profiles>
+        <profile>
+            <id>profile-xregistry</id>
+            <activation>
+                <property>
+                    <name>module</name>
+                    <value>xregistry</value>
+                </property>
+            </activation>
+            <modules>
+                <module>xregistry</module>
+            </modules>
+        </profile>
+        <profile>
+            <id>profile-gfac</id>
+            <activation>
+                <property>
+                    <name>module</name>
+                    <value>gfac</value>
+                </property>
+            </activation>
+            <modules>
+                <module>gfac-core</module>
+                <module>gfac-axis2</module>
+            </modules>
+        </profile>
+         <profile>
+            <id>profile-wsmessaging</id>
+            <activation>
+                <property>
+                    <name>module</name>
+                    <value>wsmessaging</value>
+                </property>
+            </activation>
+            <modules>
+                <module>ws-messaging</module>
+            </modules>
+        </profile>
+         <profile>
+            <id>profile-workflow-interpreter</id>
+            <activation>
+                <property>
+                    <name>module</name>
+                    <value>workflow-interpreter</value>
+                </property>
+            </activation>
+            <modules>
+                <module>workflow-interpreter</module>
+            </modules>
+        </profile>
+         <profile>
+            <id>profile-xbaya</id>
+            <activation>
+                <property>
+                    <name>module</name>
+                    <value>xbaya</value>
+                </property>
+            </activation>
+            <modules>
+                <module>xbaya-gui</module>
+            </modules>
+        </profile>
+        <profile>
+            <id>default</id>
+            <activation>
+                <activeByDefault>true</activeByDefault>
+            </activation>
+            <modules>
+                <module>xregistry</module>
+                <module>gfac-core</module>
+                <module>gfac-axis2</module>
+                <module>ws-messaging</module>
+                <module>workflow-interpreter</module>
+            	<module>xbaya-gui</module>
+	    </modules>
+        </profile>
+    </profiles>
+</project>