You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ad...@apache.org on 2017/04/11 20:17:11 UTC

airavata git commit: Creating worker module. Adding package structure for env-setup as a reference

Repository: airavata
Updated Branches:
  refs/heads/feature-workload-mgmt 6c38ebb3e -> 6f630e3e8


Creating worker module. Adding package structure for env-setup as a reference


Project: http://git-wip-us.apache.org/repos/asf/airavata/repo
Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/6f630e3e
Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/6f630e3e
Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/6f630e3e

Branch: refs/heads/feature-workload-mgmt
Commit: 6f630e3e8b104de8b3074a2e69f76c8212233991
Parents: 6c38ebb
Author: Ajinkya Dhamnaskar <ad...@apache.org>
Authored: Tue Apr 11 16:17:03 2017 -0400
Committer: Ajinkya Dhamnaskar <ad...@apache.org>
Committed: Tue Apr 11 16:17:03 2017 -0400

----------------------------------------------------------------------
 modules/worker/pom.xml                          | 36 ++++++++++++++++++++
 modules/worker/task-env-setup/pom.xml           | 20 +++++++++++
 .../worker/task/envsetup/handler/sample         |  1 +
 .../worker/task/envsetup/messaging/sample       |  1 +
 .../airavata/worker/task/envsetup/runner/sample |  1 +
 5 files changed, 59 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata/blob/6f630e3e/modules/worker/pom.xml
----------------------------------------------------------------------
diff --git a/modules/worker/pom.xml b/modules/worker/pom.xml
new file mode 100644
index 0000000..0a518d4
--- /dev/null
+++ b/modules/worker/pom.xml
@@ -0,0 +1,36 @@
+<?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.17-SNAPSHOT</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>airavata-worker</artifactId>
+    <packaging>pom</packaging>
+    <name>Airavata Worker</name>
+    <description>Encapsulates tasks</description>
+    <url>http://airavata.apache.org/</url>
+
+    <profiles>
+        <profile>
+            <id>default</id>
+            <activation>
+                <activeByDefault>true</activeByDefault>
+            </activation>
+            <modules>
+                <module>task-env-setup</module>
+            </modules>
+        </profile>
+    </profiles>
+    <properties>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+    </properties>
+
+</project>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/airavata/blob/6f630e3e/modules/worker/task-env-setup/pom.xml
----------------------------------------------------------------------
diff --git a/modules/worker/task-env-setup/pom.xml b/modules/worker/task-env-setup/pom.xml
new file mode 100644
index 0000000..9fb2301
--- /dev/null
+++ b/modules/worker/task-env-setup/pom.xml
@@ -0,0 +1,20 @@
+<?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-worker</artifactId>
+        <version>0.17-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>airavata-task-env-setup</artifactId>
+    <name>Airavata Task - Environment Setup</name>
+    <description>Environment setup task implementation.</description>
+    <url>http://airavata.apache.org/</url>
+
+
+</project>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/airavata/blob/6f630e3e/modules/worker/task-env-setup/src/main/java/org/apache/airavata/worker/task/envsetup/handler/sample
----------------------------------------------------------------------
diff --git a/modules/worker/task-env-setup/src/main/java/org/apache/airavata/worker/task/envsetup/handler/sample b/modules/worker/task-env-setup/src/main/java/org/apache/airavata/worker/task/envsetup/handler/sample
new file mode 100644
index 0000000..f6c4fd0
--- /dev/null
+++ b/modules/worker/task-env-setup/src/main/java/org/apache/airavata/worker/task/envsetup/handler/sample
@@ -0,0 +1 @@
+delete me
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/airavata/blob/6f630e3e/modules/worker/task-env-setup/src/main/java/org/apache/airavata/worker/task/envsetup/messaging/sample
----------------------------------------------------------------------
diff --git a/modules/worker/task-env-setup/src/main/java/org/apache/airavata/worker/task/envsetup/messaging/sample b/modules/worker/task-env-setup/src/main/java/org/apache/airavata/worker/task/envsetup/messaging/sample
new file mode 100644
index 0000000..f6c4fd0
--- /dev/null
+++ b/modules/worker/task-env-setup/src/main/java/org/apache/airavata/worker/task/envsetup/messaging/sample
@@ -0,0 +1 @@
+delete me
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/airavata/blob/6f630e3e/modules/worker/task-env-setup/src/main/java/org/apache/airavata/worker/task/envsetup/runner/sample
----------------------------------------------------------------------
diff --git a/modules/worker/task-env-setup/src/main/java/org/apache/airavata/worker/task/envsetup/runner/sample b/modules/worker/task-env-setup/src/main/java/org/apache/airavata/worker/task/envsetup/runner/sample
new file mode 100644
index 0000000..f6c4fd0
--- /dev/null
+++ b/modules/worker/task-env-setup/src/main/java/org/apache/airavata/worker/task/envsetup/runner/sample
@@ -0,0 +1 @@
+delete me
\ No newline at end of file