Added cloud provisioning module to build with cloud module
Project: http://git-wip-us.apache.org/repos/asf/airavata/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/cf575fe0 Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/cf575fe0 Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/cf575fe0 Branch: refs/heads/master Commit: cf575fe0a09eb7f5a39ff6e79b2f87b2b1e6feb1 Parents: 975edba Author: Shameera Rathnayaka <[email protected]> Authored: Fri Apr 15 15:55:56 2016 -0400 Committer: Shameera Rathnayaka <[email protected]> Committed: Fri Apr 15 15:55:56 2016 -0400 ---------------------------------------------------------------------- modules/cloud/cloud-provisioning/pom.xml | 12 ++++++++++-- modules/cloud/pom.xml | 6 +++++- 2 files changed, 15 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata/blob/cf575fe0/modules/cloud/cloud-provisioning/pom.xml ---------------------------------------------------------------------- diff --git a/modules/cloud/cloud-provisioning/pom.xml b/modules/cloud/cloud-provisioning/pom.xml index 0554f0c..b3d4eae 100644 --- a/modules/cloud/cloud-provisioning/pom.xml +++ b/modules/cloud/cloud-provisioning/pom.xml @@ -1,9 +1,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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> - <groupId>org.apache.airavata.cloud</groupId> + <parent> + <groupId>org.apache.airavata</groupId> + <artifactId>airavata-cloud</artifactId> + <version>0.16-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + <artifactId>cloud-provisioning</artifactId> - <version>0.0.1</version> + <packaging>jar</packaging> + <name>Airavata Cloud Provisioning</name> + <url>http://airavata.apache.org/</url> <dependencies> <dependency> http://git-wip-us.apache.org/repos/asf/airavata/blob/cf575fe0/modules/cloud/pom.xml ---------------------------------------------------------------------- diff --git a/modules/cloud/pom.xml b/modules/cloud/pom.xml index cc6645b..4f87811 100644 --- a/modules/cloud/pom.xml +++ b/modules/cloud/pom.xml @@ -12,8 +12,12 @@ <modelVersion>4.0.0</modelVersion> <artifactId>airavata-cloud</artifactId> - <packaging>jar</packaging> + <packaging>pom</packaging> <name>Airavata Cloud</name> <url>http://airavata.apache.org/</url> + <modules> + <module>cloud-provisioning</module> + </modules> + </project> \ No newline at end of file
