Added Airavata Cloud module to repo
Project: http://git-wip-us.apache.org/repos/asf/airavata/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/6c301e64 Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/6c301e64 Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/6c301e64 Branch: refs/heads/master Commit: 6c301e64a3cda54160a10a4c2f044bd8789d06f2 Parents: 16ff3fd Author: Shameera Rathnayaka <[email protected]> Authored: Wed Mar 30 16:59:40 2016 -0400 Committer: Shameera Rathnayaka <[email protected]> Committed: Wed Mar 30 16:59:40 2016 -0400 ---------------------------------------------------------------------- modules/cloud/pom.xml | 19 +++++++++++++ .../org/apache/airavata/cloud/CloudMain.java | 28 ++++++++++++++++++++ pom.xml | 1 + 3 files changed, 48 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata/blob/6c301e64/modules/cloud/pom.xml ---------------------------------------------------------------------- diff --git a/modules/cloud/pom.xml b/modules/cloud/pom.xml new file mode 100644 index 0000000..cc6645b --- /dev/null +++ b/modules/cloud/pom.xml @@ -0,0 +1,19 @@ +<?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/xsd/maven-4.0.0.xsd"> + + <parent> + <groupId>org.apache.airavata</groupId> + <artifactId>airavata</artifactId> + <version>0.16-SNAPSHOT</version> + <relativePath>../../pom.xml</relativePath> + </parent> + + <modelVersion>4.0.0</modelVersion> + <artifactId>airavata-cloud</artifactId> + <packaging>jar</packaging> + <name>Airavata Cloud</name> + <url>http://airavata.apache.org/</url> + +</project> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata/blob/6c301e64/modules/cloud/src/main/java/org/apache/airavata/cloud/CloudMain.java ---------------------------------------------------------------------- diff --git a/modules/cloud/src/main/java/org/apache/airavata/cloud/CloudMain.java b/modules/cloud/src/main/java/org/apache/airavata/cloud/CloudMain.java new file mode 100644 index 0000000..c809685 --- /dev/null +++ b/modules/cloud/src/main/java/org/apache/airavata/cloud/CloudMain.java @@ -0,0 +1,28 @@ +/* + * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + * + */ +package org.apache.airavata.cloud; + +public class CloudMain { + + public static void main(String[] args) { + System.out.println("Welcome to Airavata Cloud !!!"); + } +} http://git-wip-us.apache.org/repos/asf/airavata/blob/6c301e64/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 60c53a6..b6883c8 100644 --- a/pom.xml +++ b/pom.xml @@ -556,6 +556,7 @@ <module>modules/credential-store</module> <module>modules/orchestrator</module> <module>modules/monitoring</module> + <module>modules/cloud</module> <module>modules/server</module> <module>modules/workflow</module> <module>modules/test-suite</module>
