Author: lahiru
Date: Thu Jan  9 16:52:37 2014
New Revision: 1556871

URL: http://svn.apache.org/r1556871
Log:
fixing build error of orchestrator component.

Added:
    airavata/trunk/modules/orchestrator/pom.xml
Modified:
    airavata/trunk/modules/orchestrator/orchestrator-core/pom.xml
    
airavata/trunk/modules/orchestrator/orchestrator-core/src/main/java/org/apache/airavata/orchestrator/core/impl/SimpleJobSubmitter.java
    airavata/trunk/modules/orchestrator/orchestrator-service/pom.xml

Modified: airavata/trunk/modules/orchestrator/orchestrator-core/pom.xml
URL: 
http://svn.apache.org/viewvc/airavata/trunk/modules/orchestrator/orchestrator-core/pom.xml?rev=1556871&r1=1556870&r2=1556871&view=diff
==============================================================================
--- airavata/trunk/modules/orchestrator/orchestrator-core/pom.xml (original)
+++ airavata/trunk/modules/orchestrator/orchestrator-core/pom.xml Thu Jan  9 
16:52:37 2014
@@ -13,12 +13,12 @@ the License. -->
 
     <parent>
        <groupId>org.apache.airavata</groupId>
-       <artifactId>airavata</artifactId>
+       <artifactId>orchestrator</artifactId>
         <version>0.12-SNAPSHOT</version>
-       <relativePath>../../../trunk/pom.xml</relativePath>
+       <relativePath>../pom.xml</relativePath>
     </parent>
     <modelVersion>4.0.0</modelVersion>
-    <artifactId>airavata-orchestrator-service</artifactId>
+    <artifactId>airavata-orchestrator-core</artifactId>
     <packaging>jar</packaging>
     <name>Airavata Orchestrator Core</name>
     <url>http://airavata.apache.org/</url>

Modified: 
airavata/trunk/modules/orchestrator/orchestrator-core/src/main/java/org/apache/airavata/orchestrator/core/impl/SimpleJobSubmitter.java
URL: 
http://svn.apache.org/viewvc/airavata/trunk/modules/orchestrator/orchestrator-core/src/main/java/org/apache/airavata/orchestrator/core/impl/SimpleJobSubmitter.java?rev=1556871&r1=1556870&r2=1556871&view=diff
==============================================================================
--- 
airavata/trunk/modules/orchestrator/orchestrator-core/src/main/java/org/apache/airavata/orchestrator/core/impl/SimpleJobSubmitter.java
 (original)
+++ 
airavata/trunk/modules/orchestrator/orchestrator-core/src/main/java/org/apache/airavata/orchestrator/core/impl/SimpleJobSubmitter.java
 Thu Jan  9 16:52:37 2014
@@ -60,5 +60,6 @@ public class SimpleJobSubmitter implemen
                 logger.error("Error getting job related information");
             }
         }
+       return true;
     }
 }

Modified: airavata/trunk/modules/orchestrator/orchestrator-service/pom.xml
URL: 
http://svn.apache.org/viewvc/airavata/trunk/modules/orchestrator/orchestrator-service/pom.xml?rev=1556871&r1=1556870&r2=1556871&view=diff
==============================================================================
--- airavata/trunk/modules/orchestrator/orchestrator-service/pom.xml (original)
+++ airavata/trunk/modules/orchestrator/orchestrator-service/pom.xml Thu Jan  9 
16:52:37 2014
@@ -13,9 +13,9 @@ the License. -->
 
     <parent>
        <groupId>org.apache.airavata</groupId>
-       <artifactId>airavata</artifactId>
-        <version>0.11-SNAPSHOT</version>
-       <relativePath>../../pom.xml</relativePath>
+       <artifactId>orchestrator</artifactId>
+        <version>0.12-SNAPSHOT</version>
+       <relativePath>../pom.xml</relativePath>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <artifactId>airavata-orchestrator-service</artifactId>

Added: airavata/trunk/modules/orchestrator/pom.xml
URL: 
http://svn.apache.org/viewvc/airavata/trunk/modules/orchestrator/pom.xml?rev=1556871&view=auto
==============================================================================
--- airavata/trunk/modules/orchestrator/pom.xml (added)
+++ airavata/trunk/modules/orchestrator/pom.xml Thu Jan  9 16:52:37 2014
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--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. -->
+
+<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>
+        <groupId>org.apache.airavata</groupId>
+        <artifactId>airavata</artifactId>
+        <version>0.12-SNAPSHOT</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>orchestrator</artifactId>
+    <packaging>pom</packaging>
+    <name>Airavata Orchestrator</name>
+    <url>http://airavata.apache.org/</url>
+    
+    <profiles>
+        <profile>
+            <id>default</id>
+            <activation>
+                <activeByDefault>true</activeByDefault>
+            </activation>
+            <modules>
+                <module>orchestrator-core</module>
+                <module>orchestrator-service</module>
+            </modules>
+        </profile>
+    </profiles>
+    <properties>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+        
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+    </properties>
+</project>


Reply via email to