http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/app/workflow/ServiceWorkFlow.java
----------------------------------------------------------------------
diff --git a/ApacheCMDA-Backend/app/workflow/ServiceWorkFlow.java 
b/ApacheCMDA-Backend/app/workflow/ServiceWorkFlow.java
new file mode 100644
index 0000000..f8d387b
--- /dev/null
+++ b/ApacheCMDA-Backend/app/workflow/ServiceWorkFlow.java
@@ -0,0 +1,67 @@
+/*
+ * 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 workflow;
+
+import java.util.Arrays;
+
+public class ServiceWorkFlow {
+       private long uid;
+       private Node[] nodes;
+       private Connection[] connections;
+       private Group[] groups;
+       
+       public long getUid() {
+               return uid;
+       }
+       
+       public void setUid(long uid) {
+               this.uid = uid;
+       }
+       
+       public Node[] getNodes() {
+               return nodes;
+       }
+       
+       public void setNodes(Node[] nodes) {
+               this.nodes = nodes;
+       }
+       
+       public Connection[] getConnections() {
+               return connections;
+       }
+       
+       public void setConnections(Connection[] connections) {
+               this.connections = connections;
+       }
+       
+       public Group[] getGroups() {
+               return groups;
+       }
+       
+       public void setGroups(Group[] groups) {
+               this.groups = groups;
+       }
+
+       @Override
+       public String toString() {
+               return "ServiceWorkFlow [uid=" + uid + ", nodes="
+                               + Arrays.toString(nodes) + ", connections="
+                               + Arrays.toString(connections) + ", groups="
+                               + Arrays.toString(groups) + "]";
+       }
+
+}

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/app/workflow/VisTrailJson.java
----------------------------------------------------------------------
diff --git a/ApacheCMDA-Backend/app/workflow/VisTrailJson.java 
b/ApacheCMDA-Backend/app/workflow/VisTrailJson.java
new file mode 100644
index 0000000..abfe417
--- /dev/null
+++ b/ApacheCMDA-Backend/app/workflow/VisTrailJson.java
@@ -0,0 +1,187 @@
+/*
+ * 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 workflow;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import models.ServiceExecutionLog;
+
+import com.google.gson.Gson;
+
+public class VisTrailJson {
+       
+       public static String getVisTrailJson(List<ServiceExecutionLog> list) {
+               
+               ServiceWorkFlow serviceWorkFlow = new ServiceWorkFlow();
+               
+               serviceWorkFlow.setUid(list.get(0).getUser().getId());
+               
+               long nodeIdGenerator = 1;
+               List<Node> nodeList = new ArrayList<Node>();
+               
+               for (int i = 0; i < list.size(); i++) {
+                       FieldIn fieldIn = new FieldIn();
+                       fieldIn.setName("in");
+                       fieldIn.setValue("execution" + nodeIdGenerator);
+                       
+                       FieldOut fieldOut = new FieldOut();
+                       fieldOut.setName("out");
+                       fieldOut.setValue(null);
+                       
+                       Fields fields = new Fields();
+                       fields.setIn(new FieldIn[] {fieldIn});
+                       fields.setOut(new FieldOut[] {fieldOut});
+                       
+                       Node node = new Node();
+                       node.setNid(nodeIdGenerator);
+                       node.setName(list.get(i).getClimateService().getName());
+                       node.setType("Service");
+                       node.setAnim(false);
+                       node.setX(56.800006091594696);
+                       node.setY(230.8000060915947);
+                       node.setFields(fields);
+                       
+                       nodeList.add(node);
+                       
+                       nodeIdGenerator++;
+               }
+               
+               FieldIn[] fieldInArray = new FieldIn[list.size()];
+               for (int i = 0; i < list.size(); i++) {
+                       FieldIn fieldIn = new FieldIn();
+                       fieldIn.setName("in" + i);
+                       fieldIn.setValue("");
+                       fieldInArray[i] = fieldIn;
+               }
+               
+               FieldOut fieldOut = new FieldOut();
+               fieldOut.setName("out");
+               fieldOut.setValue(null);
+               
+               Fields fields = new Fields();
+               fields.setIn(fieldInArray);
+               fields.setOut(new FieldOut[] {fieldOut});
+               
+               Node node = new Node();
+               node.setNid(nodeIdGenerator);
+               node.setName("Aggregation");
+               node.setType("Aggregation");
+               node.setAnim(false);
+               node.setX(56.800006091594696);
+               node.setY(230.8000060915947);
+               node.setFields(fields);
+               
+               nodeList.add(node);
+               
+               nodeIdGenerator++;
+               
+               FieldIn fieldInWriteFile = new FieldIn();
+               fieldInWriteFile.setName("in");
+               fieldInWriteFile.setValue("");
+               
+               FieldOut fieldOutWriteFile = new FieldOut();
+               fieldOut.setName("out");
+               fieldOut.setValue(null);
+               
+               Fields fieldsWriteFile = new Fields();
+               fieldsWriteFile.setIn(new FieldIn[] {fieldInWriteFile});
+               fieldsWriteFile.setOut(new FieldOut[] {fieldOutWriteFile});
+               
+               Node nodeWriteFile = new Node();
+               nodeWriteFile.setNid(nodeIdGenerator);
+               nodeWriteFile.setName("WriteFile");
+               nodeWriteFile.setType("WriteFile");
+               nodeWriteFile.setAnim(false);
+               nodeWriteFile.setX(56.800006091594696);
+               nodeWriteFile.setY(230.8000060915947);
+               nodeWriteFile.setFields(fields);
+               
+               nodeList.add(nodeWriteFile);
+               
+               nodeIdGenerator++;
+               
+               FieldIn fieldInFileSink1 = new FieldIn();
+               fieldInFileSink1.setName("in");
+               fieldInFileSink1.setValue(null);
+               
+               FieldIn fieldInFileSink2 = new FieldIn();
+               fieldInFileSink2.setName("in0");
+               fieldInFileSink2.setValue(null);
+               
+               FieldOut fieldOutFileSink = new FieldOut();
+               fieldOutFileSink.setName(null);
+               fieldOutFileSink.setValue(null);
+               
+               Fields fieldsFileSink = new Fields();
+               fieldsFileSink.setIn(new FieldIn[] {fieldInFileSink1, 
fieldInFileSink2});
+               fieldsFileSink.setOut(new FieldOut[] {fieldOutFileSink});
+               
+               Node nodeFileSink = new Node();
+               nodeFileSink.setNid(nodeIdGenerator);
+               nodeFileSink.setName("FileSink");
+               nodeFileSink.setType("FileSink");
+               nodeFileSink.setAnim(false);
+               nodeFileSink.setX(716.0);
+               nodeFileSink.setY(156.07);
+               nodeFileSink.setFields(fields);
+               
+               nodeList.add(nodeFileSink);
+               
+               nodeIdGenerator++;
+               
+               serviceWorkFlow.setNodes(nodeList.toArray(new 
Node[nodeList.size()]));
+               
+               List<Connection> connectionList = new ArrayList<Connection>();
+               for (int i = 0; i < list.size(); i++) {
+                       Connection connection = new Connection();
+                       connection.setId(nodeIdGenerator);
+                       connection.setFrom_node(i + 1);
+                       connection.setFrom("out");
+                       connection.setTo_node(list.size() + 1);
+                       connection.setTo("in" + i);
+                       
+                       connectionList.add(connection);
+
+                       nodeIdGenerator++;
+               }
+               
+               for (int i = 0; i < 2; i++) {
+                       Connection connection = new Connection();
+                       connection.setId(nodeIdGenerator);
+                       connection.setFrom_node(list.size() + i + 1);
+                       connection.setFrom("out");
+                       connection.setTo_node(list.size() + i + 2);
+                       connection.setTo("in");
+                       
+                       connectionList.add(connection);
+
+                       nodeIdGenerator++;
+               }
+               
+               serviceWorkFlow.setConnections(connectionList.toArray
+                               (new Connection[connectionList.size()]));
+               
+               serviceWorkFlow.setGroups(new Group[0]);
+               
+               Gson gson = new Gson();
+
+               return gson.toJson(serviceWorkFlow);
+       }
+
+}

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/build.sbt
----------------------------------------------------------------------
diff --git a/ApacheCMDA-Backend/build.sbt b/ApacheCMDA-Backend/build.sbt
new file mode 100644
index 0000000..8c3911c
--- /dev/null
+++ b/ApacheCMDA-Backend/build.sbt
@@ -0,0 +1,26 @@
+name := """ApacheCMDA_Backend"""
+
+version := "1.0-SNAPSHOT"
+
+lazy val root = (project in file(".")).enablePlugins(PlayJava)
+
+scalaVersion := "2.11.4"
+
+jacoco.settings
+
+libraryDependencies ++= Seq(
+  cache,
+  javaWs,
+  javaCore,
+  "org.springframework" % "spring-context" % "4.1.4.RELEASE",
+  "javax.inject" % "javax.inject" % "1",
+  "org.springframework.data" % "spring-data-jpa" % "1.7.1.RELEASE",
+  "org.springframework" % "spring-expression" % "4.1.4.RELEASE",
+  "org.hibernate" % "hibernate-entitymanager" % "4.3.7.Final",
+  "org.mockito" % "mockito-core" % "1.10.19" % "test",
+  "mysql" % "mysql-connector-java" % "5.1.34",
+  "com.google.code.gson" % "gson" % "2.3.1",
+  "org.hibernate" % "hibernate-c3p0" % "4.3.7.Final"
+)
+
+

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/conf/META-INF/persistence.xml
----------------------------------------------------------------------
diff --git a/ApacheCMDA-Backend/conf/META-INF/persistence.xml 
b/ApacheCMDA-Backend/conf/META-INF/persistence.xml
new file mode 100644
index 0000000..3342b31
--- /dev/null
+++ b/ApacheCMDA-Backend/conf/META-INF/persistence.xml
@@ -0,0 +1,33 @@
+<persistence xmlns="http://java.sun.com/xml/ns/persistence";
+             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+             xsi:schemaLocation="http://java.sun.com/xml/ns/persistence 
http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd";
+             version="2.0">
+
+    <persistence-unit name="default" transaction-type="RESOURCE_LOCAL">
+        <provider>org.hibernate.ejb.HibernatePersistence</provider>
+        
+        <properties>
+            
+            <!-- Configuring JDBC properties -->
+               <property name="javax.persistence.jdbc.driver" 
value="com.mysql.jdbc.Driver" />
+            <property name="javax.persistence.jdbc.url" 
value="jdbc:mysql://localhost:3306/climateService" />
+            <property name="javax.persistence.jdbc.user" value="root" />
+            <property name="javax.persistence.jdbc.password" value="root" />
+               
+            <!-- Hibernate properties -->
+            <property name="hibernate.dialect" 
value="org.hibernate.dialect.MySQLDialect" />
+            <property name="hibernate.show_sql" value="true" />
+            <property name="hibernate.hbm2ddl.auto" value="update" />
+            
+            <!-- Configuring Connection Pool -->
+               <property name="hibernate.c3p0.min_size" value="5" />
+               <property name="hibernate.c3p0.max_size" value="20" />
+               <property name="hibernate.c3p0.timeout" value="500" />
+               <property name="hibernate.c3p0.max_statements" value="50" />
+               <property name="hibernate.c3p0.idle_test_period" value="2000" />
+               
+        </properties>
+        
+    </persistence-unit>
+
+</persistence>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/conf/application.conf
----------------------------------------------------------------------
diff --git a/ApacheCMDA-Backend/conf/application.conf 
b/ApacheCMDA-Backend/conf/application.conf
new file mode 100644
index 0000000..8b6fdc9
--- /dev/null
+++ b/ApacheCMDA-Backend/conf/application.conf
@@ -0,0 +1,72 @@
+# This is the main configuration file for the application.
+# ~~~~~
+
+# Secret key
+# ~~~~~
+# The secret key is used to secure cryptographics functions.
+#
+# This must be changed for production, but we recommend not changing it in 
this file.
+#
+# See http://www.playframework.com/documentation/latest/ApplicationSecret for 
more details.
+application.secret="/A=PmUSp=kNy2o6Pb8CJ[ZJAHcAbtWGCK[JQuN[[xb;u;FsIM1Z8ARQDOhpjKRvF"
+
+# The application languages
+# ~~~~~
+application.langs="en"
+
+# Global object class
+# ~~~~~
+# Define the Global object class for this application.
+# Default to Global in the root package.
+# application.global=Global
+
+# Router
+# ~~~~~
+# Define the Router object to use for this application.
+# This router will be looked up first when the application is starting up,
+# so make sure this is the entry point.
+# Furthermore, it's assumed your route file is named properly.
+# So for an application router like `conf/my.application.Router`,
+# you may need to define a router file `my.application.routes`.
+# Default to Routes in the root package (and `conf/routes`)
+# application.router=my.application.Routes
+
+# Database configuration
+# ~~~~~
+# You can declare as many datasources as you want.
+# By convention, the default datasource is named `default`
+#
+  db.default.driver=org.h2.Driver
+  db.default.url="jdbc:h2:mem:play"
+# db.default.user=sa
+# db.default.password=""
+#
+# You can expose this datasource via JNDI if needed (Useful for JPA)
+  db.default.jndiName=DefaultDS
+
+# Evolutions
+# ~~~~~
+# You can disable evolutions if needed
+# evolutionplugin=disabled
+
+# Ebean configuration
+# ~~~~~
+# You can declare as many Ebean servers as you want.
+# By convention, the default server is named `default`
+#
+# ebean.default="models.*"
+
+# Logger
+# ~~~~~
+# You can also configure logback (http://logback.qos.ch/),
+# by providing an application-logger.xml file in the conf directory.
+
+# Root logger:
+logger.root=ERROR
+
+# Logger used by the framework:
+logger.play=INFO
+
+# Logger provided to your application:
+logger.application=DEBUG
+

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/conf/routes
----------------------------------------------------------------------
diff --git a/ApacheCMDA-Backend/conf/routes b/ApacheCMDA-Backend/conf/routes
new file mode 100644
index 0000000..af196c5
--- /dev/null
+++ b/ApacheCMDA-Backend/conf/routes
@@ -0,0 +1,138 @@
+# Routes
+# This file defines all application routes (Higher priority routes first)
+# ~~~~
+
+# Home page - we use the @controllers syntax here so that the router knows we 
are referring to a class. In turn it
+# will call on the GlobalSettings.getController method to resolve the actual 
controller instance.
+# GET     /                           @controllers.Application.index
+
+# Climate Service
+GET           /climateService/getClimateService/:name/json                     
                         
@controllers.ClimateServiceController.getClimateService(name: String, format: 
String="json")
+GET           /climateService/getClimateService/id/:id                         
                         
@controllers.ClimateServiceController.getClimateServiceById(id: Long)
+GET           /climateService/getAllClimateServices/json                       
                         
@controllers.ClimateServiceController.getAllClimateServices(format: 
String="json")
+GET           /climateService/getAllMostRecentClimateServicesByCreateTime/json 
                         
@controllers.ClimateServiceController.getAllClimateServicesOrderByCreateTime(format:
 String="json")
+GET           
/climateService/getAllMostRecentClimateServicesByLatestAccessTime/json          
          
@controllers.ClimateServiceController.getAllClimateServicesOrderByLatestAccessTime(format:
 String="json")
+GET           /climateService/getAllMostUsedClimateServices/json               
                         
@controllers.ClimateServiceController.getAllClimateServicesOrderByCount(format: 
String="json")
+POST          /climateService/addClimateService                                
                         @controllers.ClimateServiceController.addClimateService
+GET           /climateService/getAllServiceEntries/json                        
                         
@controllers.ClimateServiceController.getAllServiceEntries(format: 
String="json")
+POST          /climateService/addServiceEntry                                  
                         @controllers.ClimateServiceController.addServiceEntry
+PUT           /climateService/updateClimateService/id/:id                      
                         
@controllers.ClimateServiceController.updateClimateServiceById(id: Long)
+PUT           /climateService/updateClimateService/name/:oldName               
                         
@controllers.ClimateServiceController.updateClimateServiceByName(oldName: 
String)
+DELETE        /climateService/deleteClimateService/id/:id                      
                         
@controllers.ClimateServiceController.deleteClimateServiceById(id: Long)
+DELETE        /climateService/deleteClimateService/name/:name                  
                         
@controllers.ClimateServiceController.deleteClimateServiceByName(name: String)
+
+# Save Climate Service Page
+POST          /climateService/savePage                                         
                                        
@controllers.ClimateServiceController.savePage
+
+# Bug Report
+GET           /bugReport/getBugReport/id/:id                                   
                         @controllers.BugReportController.getBugReport(id: 
Long, format: String="json")
+GET           /bugReport/getAllBugReports/json                                 
                         @controllers.BugReportController.getAllBugReports
+GET           /bugReport/getAllUnsolvedBugReports/json                         
                         
@controllers.BugReportController.getAllUnsolvedBugReports
+GET           /bugReport/getAllSolvedBugReports/json                           
                         @controllers.BugReportController.getAllSolvedBugReports
+POST          /bugReport/addBugReport                                          
                         @controllers.BugReportController.addBugReport
+PUT           /bugReport/updateBugReport/id/:id                                
                         
@controllers.BugReportController.updateBugReportById(id: Long)
+DELETE        /bugReport/deleteBugReport/id/:id                                
                         @controllers.BugReportController.deleteBugReport(id: 
Long)
+
+# Service Configuration
+GET           /serviceConfiguration/getServiceConfiguration/id/:id/json        
                         
@controllers.ServiceConfigurationController.getServiceConfiguration(id: Long, 
format: String="json")
+POST          /serviceConfiguration/addServiceConfiguration                    
                         
@controllers.ServiceConfigurationController.addServiceConfiguration
+PUT           /serviceConfiguration/updateServiceConfiguration/id/:id          
                         
@controllers.ServiceConfigurationController.updateServiceConfigurationById(id: 
Long)
+DELETE        /serviceConfiguration/deleteServiceConfiguration/:id             
                         
@controllers.ServiceConfigurationController.deleteServiceConfiguration(id: Long)
+GET           
/serviceConfiguration/getAllServiceConfigurationsByUserId/:userId/json          
          
@controllers.ServiceConfigurationController.getServiceConfigurationsByUser(userId:
 Long, format: String="json")
+
+# Service Configuration Item
+GET           /serviceConfigurationItem/serviceConfigurationItemById/:id       
                         
@controllers.ServiceConfigurationItemController.getServiceConfigurationItemById(id:
 Long)
+GET           
/serviceConfigurationItem/serviceConfigurationItemByServiceConfig/:serviceConfigId
        
@controllers.ServiceConfigurationItemController.getServiceConfigurationItemsInServiceConfig(serviceConfigId:
 Long)
+GET           
/serviceConfigurationItem/serviceConfigurationItemByParamId/:paramId            
          
@controllers.ServiceConfigurationItemController.getServiceConfigurationItemByParameterId(paramId
 : Long)
+POST          /serviceConfigurationItem/addServiceConfigurationItem            
                         
@controllers.ServiceConfigurationItemController.addServiceConfigurationItem
+PUT           /serviceConfigurationItem/updateServiceConfigurationItem/id/:id  
                         
@controllers.ServiceConfigurationItemController.updateServiceConfigurationItemById(id:Long)
+DELETE        /serviceConfigurationItem/deleteServiceConfigurationItemById/:id 
                         
@controllers.ServiceConfigurationItemController.deleteServiceConfigurationItemById(id:
 Long)
+
+# Service Execution Log
+GET           /serviceExecutionLog/getAllServiceExecutionLog                   
                         
@controllers.ServiceExecutionLogController.getAllServiceExecutionLogs(format: 
String="json")
+GET           /serviceExecutionLog/getServiceExecutionLog/:id                  
                         
@controllers.ServiceExecutionLogController.getServiceExecutionLog(id: Long, 
format: String="json")
+POST          /serviceExecutionLog/addServiceExecutionLog                      
                         
@controllers.ServiceExecutionLogController.addServiceExecutionLog()
+POST          /serviceExecutionLog/queryServiceExecutionLogs                   
                         
@controllers.ServiceExecutionLogController.queryServiceExecutionLogs()
+PUT           /serviceExecutionLog/updateServiceExecutionLogs/:id              
                         
@controllers.ServiceExecutionLogController.updateServiceExecutionLog(id: Long)
+DELETE        /serviceExecutionLog/deleteServiceExecutionLogs/:id              
                         
@controllers.ServiceExecutionLogController.deleteServiceExecutionLog(id: Long)
+# Temp: replace service log
+#GET           /serviceExecutionLog/replaceUser                                
                          
@controllers.ServiceExecutionLogController.replaceUserWithPurpose()
+
+# DatasetLog
+GET           /datasetLog/getAllDatasetLogs/json                               
                         
@controllers.DatasetLogController.getAllDatasetLogs(format: String="json")
+GET           /datasetLog/getDatasetLog/id/:id/json                            
                         @controllers.DatasetLogController.getDatasetLog(id: 
Long, format: String="json")
+POST          /datasetLog/addDatasetLog                                        
                         @controllers.DatasetLogController.addDatasetLog
+PUT           /datasetLog/updateDatasetLog/id/:id                              
                         
@controllers.DatasetLogController.updateDatasetLogById(id: Long)
+DELETE        /datasetLog/deleteDatasetLog/id/:id                              
                         @controllers.DatasetLogController.deleteDatasetLog(id: 
Long)
+
+# Workflow
+GET           /workflow/getAllWorkflows/json                                   
                        @controllers.WorkflowController.getAllWorkflows(format: 
String="json")
+GET           /workflow/getWorkflowById/id/:id/json                            
                         @controllers.WorkflowController.getWorkflowById(id: 
Long, format: String="json")
+POST          /workflow/addWorkflow                                            
                        @controllers.WorkflowController.addWorkflow
+PUT           /workflow/updateWorkflowById/id/:id                              
                         @controllers.WorkflowController.updateWorkflowById(id: 
Long)
+DELETE        /workflow/deleteWorkflowById/id/:id/                             
                                
@controllers.WorkflowController.deleteWorkflowById(id:Long)
+POST          /workflow/generateWorkflowJson                                   
                         @controllers.WorkflowController.generateWorkflowJson
+
+# Instrument
+GET           /instrument/getAllInstruments/json                               
                         
@controllers.InstrumentController.getAllInstruments(format: String="json")
+GET           /instrument/getInstrument/id/:id/json                            
                         @controllers.InstrumentController.getInstrument(id: 
Long, format: String="json")
+POST          /instrument/addInstrument                                        
                         @controllers.InstrumentController.addInstrument
+PUT           /instrument/updateInstrument/id/:id                              
                         
@controllers.InstrumentController.updateInstrumentById(id: Long)
+DELETE        /instrument/deleteInstrument/id/:id                              
                         @controllers.InstrumentController.deleteInstrument(id: 
Long)
+
+# Dataset
+GET           /dataset/getAllDatasets/json                                     
                         @controllers.DatasetController.getAllDatasets(format: 
String="json")
+GET           /dataset/getDataset/id/:id/json                                  
                         @controllers.DatasetController.getDataset(id: Long, 
format: String="json")
+POST          /dataset/addDataset                                              
                         @controllers.DatasetController.addDataset
+PUT           /dataset/updateDataset/id/:id                                    
                         @controllers.DatasetController.updateDatasetById(id: 
Long)
+DELETE        /dataset/deleteDataset/id/:id                                    
                         @controllers.DatasetController.deleteDataset(id: Long)
+POST             /dataset/queryDataset                                         
                                                                                
                @controllers.DatasetController.queryDatasets
+
+# Parameter
+GET           /parameter/getAllParameters/json                                 
                         
@controllers.ParameterController.getAllParameters(format: String="json")
+GET           /parameter/getParameter/service/:id/name/:name/json              
                         
@controllers.ParameterController.getParameterByName(id:Long, name: String, 
format: String="json")
+GET           /parameter/getParameter/id/:id/json                              
                         @controllers.ParameterController.getParameterById(id: 
Long, format: String="json")
+POST          /parameter/addParameter                                          
                         @controllers.ParameterController.addParameter
+PUT           /parameter/updateParameter/id/:id                                
                         
@controllers.ParameterController.updateParameterById(id: Long)
+PUT           /parameter/updateParameter/name/:oldName                         
                         
@controllers.ParameterController.updateParameterByName(oldName: String)
+DELETE        /parameter/deleteParameter/service/:id/name/:name                
                         
@controllers.ParameterController.deleteParameterByName(id:Long, name: String)
+
+# JournalPublication
+GET           /journalPublication/getAllJournalPublications/json               
                         
@controllers.JournalPublicationController.getAllJournalPublications(format: 
String="json")
+GET           /journalPublication/getJournalPublication/id/:id/json            
                         
@controllers.JournalPublicationController.getJournalPublicationById(id: Long, 
format: String="json")
+POST          /journalPublication/addJournalPublication                        
                         
@controllers.JournalPublicationController.addJournalPublication
+PUT           /journalPublication/updateJournalPublication/id/:id              
                         
@controllers.JournalPublicationController.updateJournalPublicationById(id: Long)
+DELETE        /journalPublication/deleteJournalPublication/id/:id              
                         
@controllers.JournalPublicationController.deleteJournalPublicationById(id: Long)
+
+# BookPublication
+GET           /BookPublication/getAllBookPublications/json                     
                         
@controllers.BookPublicationController.getAllBookPublications(format: 
String="json")
+GET           /BookPublication/getBookPublication/id/:id/json                  
                         
@controllers.BookPublicationController.getBookPublicationById(id: Long, format: 
String="json")
+POST          /BookPublication/addBookPublication                              
                         
@controllers.BookPublicationController.addBookPublication
+PUT           /BookPublication/updateBookPublication/id/:id                    
                         
@controllers.BookPublicationController.updateBookPublicationById(id: Long)
+DELETE        /BookPublication/deleteBookPublication/id/:id                    
                         
@controllers.BookPublicationController.deleteBookPublicationById(id: Long)
+
+# BookChapterPublication
+GET           /BookChapterPublication/getAllBookPublications/json              
                         
@controllers.BookChapterPublicationController.getAllBookChapterPublications(format:
 String="json")
+GET           /BookChapterPublication/getBookPublication/id/:id/json           
                         
@controllers.BookChapterPublicationController.getBookChapterPublication(id: 
Long, format: String="json")
+POST          /BookChapterPublication/addBookPublication                       
                         
@controllers.BookChapterPublicationController.addBookChapterPublication
+PUT           /BookChapterPublication/updateBookPublication/id/:id             
                         
@controllers.BookChapterPublicationController.updateBookChapterPublication(id: 
Long)
+DELETE        /BookChapterPublication/deleteBookPublication/id/:id             
                         
@controllers.BookChapterPublicationController.deleteBookChapterPublication(id: 
Long)
+
+# ConferencePublication
+GET           /ConferencePublication/getAllBookPublications/json               
                         
@controllers.ConferencePublicationController.getAllConferencePublications(format:
 String="json")
+GET           /ConferencePublication/getBookPublication/id/:id/json            
                         
@controllers.ConferencePublicationController.getConferencePublication(id: Long, 
format: String="json")
+POST          /ConferencePublication/addBookPublication                        
                         
@controllers.ConferencePublicationController.addConferencePublication
+PUT           /ConferencePublication/updateBookPublication/id/:id              
                         
@controllers.ConferencePublicationController.updateConferencePublication(id: 
Long)
+DELETE        /ConferencePublication/deleteBookPublication/id/:id              
                         
@controllers.ConferencePublicationController.deleteConferencePublication(id: 
Long)
+
+# Users
+GET           /users/:id                                                       
                         @controllers.UserController.getUser(id: Long, format: 
String="json")
+POST          /users/add                                                       
                         @controllers.UserController.addUser
+PUT           /users/update/:id                                                
                         @controllers.UserController.updateUser(id: Long)
+DELETE        /users/delete/:id                                                
                         @controllers.UserController.deleteUser(id: Long)
+GET                      /users/getAllUsers/json                               
                                                                                
                        @controllers.UserController.getAllUsers(format: 
String="json")
+POST             /users/isUserValid                                            
                                                                                
                @controllers.UserController.isUserValid
+DELETE           /users/delete/userName/:userName/password/:password           
                                                                
@controllers.UserController.deleteUserByUserNameandPassword(userName: String, 
password: String)
+
+# Map static resources from the /public folder to the /assets URL path
+GET           /assets/*file                                                    
                         controllers.Assets.at(path="/public", file)

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/.DS_Store
----------------------------------------------------------------------
diff --git a/ApacheCMDA-Backend/project/.DS_Store 
b/ApacheCMDA-Backend/project/.DS_Store
new file mode 100644
index 0000000..ec88fc9
Binary files /dev/null and b/ApacheCMDA-Backend/project/.DS_Store differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/activator-sbt-echo-shim.sbt
----------------------------------------------------------------------
diff --git a/ApacheCMDA-Backend/project/activator-sbt-echo-shim.sbt 
b/ApacheCMDA-Backend/project/activator-sbt-echo-shim.sbt
new file mode 100644
index 0000000..99d5973
--- /dev/null
+++ b/ApacheCMDA-Backend/project/activator-sbt-echo-shim.sbt
@@ -0,0 +1 @@
+addSbtPlugin("com.typesafe.sbt" % "sbt-echo" % "0.1.6.2")
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/activator-sbt-eclipse-shim.sbt
----------------------------------------------------------------------
diff --git a/ApacheCMDA-Backend/project/activator-sbt-eclipse-shim.sbt 
b/ApacheCMDA-Backend/project/activator-sbt-eclipse-shim.sbt
new file mode 100644
index 0000000..8734fe2
--- /dev/null
+++ b/ApacheCMDA-Backend/project/activator-sbt-eclipse-shim.sbt
@@ -0,0 +1 @@
+addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.3.0")
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/activator-sbt-idea-shim.sbt
----------------------------------------------------------------------
diff --git a/ApacheCMDA-Backend/project/activator-sbt-idea-shim.sbt 
b/ApacheCMDA-Backend/project/activator-sbt-idea-shim.sbt
new file mode 100644
index 0000000..3023480
--- /dev/null
+++ b/ApacheCMDA-Backend/project/activator-sbt-idea-shim.sbt
@@ -0,0 +1 @@
+addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.5.2")
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/build.properties
----------------------------------------------------------------------
diff --git a/ApacheCMDA-Backend/project/build.properties 
b/ApacheCMDA-Backend/project/build.properties
new file mode 100644
index 0000000..6b6a42a
--- /dev/null
+++ b/ApacheCMDA-Backend/project/build.properties
@@ -0,0 +1,4 @@
+#Activator-generated Properties
+#Wed Jan 07 15:18:11 PST 2015
+template.uuid=30665618-b7de-4174-aeaa-edf647fee712
+sbt.version=0.13.5

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/plugins.sbt
----------------------------------------------------------------------
diff --git a/ApacheCMDA-Backend/project/plugins.sbt 
b/ApacheCMDA-Backend/project/plugins.sbt
new file mode 100644
index 0000000..f7d6433
--- /dev/null
+++ b/ApacheCMDA-Backend/project/plugins.sbt
@@ -0,0 +1,20 @@
+resolvers += "Typesafe repository" at 
"https://repo.typesafe.com/typesafe/releases/";
+
+// The Play plugin
+addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.3.7")
+
+// web plugins
+
+addSbtPlugin("com.typesafe.sbt" % "sbt-coffeescript" % "1.0.0")
+
+addSbtPlugin("com.typesafe.sbt" % "sbt-less" % "1.0.0")
+
+addSbtPlugin("com.typesafe.sbt" % "sbt-jshint" % "1.0.1")
+
+addSbtPlugin("com.typesafe.sbt" % "sbt-rjs" % "1.0.1")
+
+addSbtPlugin("com.typesafe.sbt" % "sbt-digest" % "1.0.0")
+
+addSbtPlugin("com.typesafe.sbt" % "sbt-mocha" % "1.0.0")
+
+addSbtPlugin("de.johoop" % "jacoco4sbt" % "2.1.6")

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$187c47b2ee828d96dfc1$.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$187c47b2ee828d96dfc1$.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$187c47b2ee828d96dfc1$.class
new file mode 100644
index 0000000..77ae209
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$187c47b2ee828d96dfc1$.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$187c47b2ee828d96dfc1.cache
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$187c47b2ee828d96dfc1.cache
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$187c47b2ee828d96dfc1.cache
new file mode 100644
index 0000000..07eb409
--- /dev/null
+++ 
b/ApacheCMDA-Backend/project/project/target/config-classes/$187c47b2ee828d96dfc1.cache
@@ -0,0 +1 @@
+sbt.Def.SettingsDefinition
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$187c47b2ee828d96dfc1.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$187c47b2ee828d96dfc1.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$187c47b2ee828d96dfc1.class
new file mode 100644
index 0000000..a0bee55
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$187c47b2ee828d96dfc1.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$33872a24821d2646c467$$anonfun$$sbtdef$1.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$33872a24821d2646c467$$anonfun$$sbtdef$1.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$33872a24821d2646c467$$anonfun$$sbtdef$1.class
new file mode 100644
index 0000000..91a3e89
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$33872a24821d2646c467$$anonfun$$sbtdef$1.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$33872a24821d2646c467$.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$33872a24821d2646c467$.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$33872a24821d2646c467$.class
new file mode 100644
index 0000000..fd5c8dc
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$33872a24821d2646c467$.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$33872a24821d2646c467.cache
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$33872a24821d2646c467.cache
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$33872a24821d2646c467.cache
new file mode 100644
index 0000000..07eb409
--- /dev/null
+++ 
b/ApacheCMDA-Backend/project/project/target/config-classes/$33872a24821d2646c467.cache
@@ -0,0 +1 @@
+sbt.Def.SettingsDefinition
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$33872a24821d2646c467.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$33872a24821d2646c467.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$33872a24821d2646c467.class
new file mode 100644
index 0000000..ede8821
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$33872a24821d2646c467.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$34b07a12071e119d680f$.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$34b07a12071e119d680f$.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$34b07a12071e119d680f$.class
new file mode 100644
index 0000000..8ca0a5f
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$34b07a12071e119d680f$.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$34b07a12071e119d680f.cache
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$34b07a12071e119d680f.cache
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$34b07a12071e119d680f.cache
new file mode 100644
index 0000000..07eb409
--- /dev/null
+++ 
b/ApacheCMDA-Backend/project/project/target/config-classes/$34b07a12071e119d680f.cache
@@ -0,0 +1 @@
+sbt.Def.SettingsDefinition
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$34b07a12071e119d680f.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$34b07a12071e119d680f.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$34b07a12071e119d680f.class
new file mode 100644
index 0000000..6ed6334
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$34b07a12071e119d680f.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$40d654c199d51b031e53$.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$40d654c199d51b031e53$.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$40d654c199d51b031e53$.class
new file mode 100644
index 0000000..9f34d6f
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$40d654c199d51b031e53$.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$40d654c199d51b031e53.cache
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$40d654c199d51b031e53.cache
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$40d654c199d51b031e53.cache
new file mode 100644
index 0000000..07eb409
--- /dev/null
+++ 
b/ApacheCMDA-Backend/project/project/target/config-classes/$40d654c199d51b031e53.cache
@@ -0,0 +1 @@
+sbt.Def.SettingsDefinition
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$40d654c199d51b031e53.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$40d654c199d51b031e53.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$40d654c199d51b031e53.class
new file mode 100644
index 0000000..0fdb0ac
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$40d654c199d51b031e53.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$5b7fdc306770aceaa164$.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$5b7fdc306770aceaa164$.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$5b7fdc306770aceaa164$.class
new file mode 100644
index 0000000..feeae4c
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$5b7fdc306770aceaa164$.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$5b7fdc306770aceaa164.cache
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$5b7fdc306770aceaa164.cache
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$5b7fdc306770aceaa164.cache
new file mode 100644
index 0000000..07eb409
--- /dev/null
+++ 
b/ApacheCMDA-Backend/project/project/target/config-classes/$5b7fdc306770aceaa164.cache
@@ -0,0 +1 @@
+sbt.Def.SettingsDefinition
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$5b7fdc306770aceaa164.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$5b7fdc306770aceaa164.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$5b7fdc306770aceaa164.class
new file mode 100644
index 0000000..0043eee
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$5b7fdc306770aceaa164.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$911ad6780111550298b2$.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$911ad6780111550298b2$.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$911ad6780111550298b2$.class
new file mode 100644
index 0000000..e7557ab
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$911ad6780111550298b2$.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$911ad6780111550298b2.cache
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$911ad6780111550298b2.cache
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$911ad6780111550298b2.cache
new file mode 100644
index 0000000..07eb409
--- /dev/null
+++ 
b/ApacheCMDA-Backend/project/project/target/config-classes/$911ad6780111550298b2.cache
@@ -0,0 +1 @@
+sbt.Def.SettingsDefinition
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$911ad6780111550298b2.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$911ad6780111550298b2.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$911ad6780111550298b2.class
new file mode 100644
index 0000000..a09cb03
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$911ad6780111550298b2.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$a172055b2580fb667562$.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$a172055b2580fb667562$.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$a172055b2580fb667562$.class
new file mode 100644
index 0000000..9682b97
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$a172055b2580fb667562$.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$a172055b2580fb667562.cache
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$a172055b2580fb667562.cache
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$a172055b2580fb667562.cache
new file mode 100644
index 0000000..07eb409
--- /dev/null
+++ 
b/ApacheCMDA-Backend/project/project/target/config-classes/$a172055b2580fb667562.cache
@@ -0,0 +1 @@
+sbt.Def.SettingsDefinition
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$a172055b2580fb667562.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$a172055b2580fb667562.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$a172055b2580fb667562.class
new file mode 100644
index 0000000..04e69bc
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$a172055b2580fb667562.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$a4acfbb69c27698a3062$.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$a4acfbb69c27698a3062$.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$a4acfbb69c27698a3062$.class
new file mode 100644
index 0000000..52fb761
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$a4acfbb69c27698a3062$.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$a4acfbb69c27698a3062.cache
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$a4acfbb69c27698a3062.cache
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$a4acfbb69c27698a3062.cache
new file mode 100644
index 0000000..07eb409
--- /dev/null
+++ 
b/ApacheCMDA-Backend/project/project/target/config-classes/$a4acfbb69c27698a3062.cache
@@ -0,0 +1 @@
+sbt.Def.SettingsDefinition
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$a4acfbb69c27698a3062.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$a4acfbb69c27698a3062.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$a4acfbb69c27698a3062.class
new file mode 100644
index 0000000..15b931b
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$a4acfbb69c27698a3062.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$a61f9d0e8d679c6c3cbc$.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$a61f9d0e8d679c6c3cbc$.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$a61f9d0e8d679c6c3cbc$.class
new file mode 100644
index 0000000..828ee4c
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$a61f9d0e8d679c6c3cbc$.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$a61f9d0e8d679c6c3cbc.cache
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$a61f9d0e8d679c6c3cbc.cache
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$a61f9d0e8d679c6c3cbc.cache
new file mode 100644
index 0000000..07eb409
--- /dev/null
+++ 
b/ApacheCMDA-Backend/project/project/target/config-classes/$a61f9d0e8d679c6c3cbc.cache
@@ -0,0 +1 @@
+sbt.Def.SettingsDefinition
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$a61f9d0e8d679c6c3cbc.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$a61f9d0e8d679c6c3cbc.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$a61f9d0e8d679c6c3cbc.class
new file mode 100644
index 0000000..a6d0137
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$a61f9d0e8d679c6c3cbc.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$b271e7dbc0ae3cf76d49$.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$b271e7dbc0ae3cf76d49$.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$b271e7dbc0ae3cf76d49$.class
new file mode 100644
index 0000000..cfaf414
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$b271e7dbc0ae3cf76d49$.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$b271e7dbc0ae3cf76d49.cache
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$b271e7dbc0ae3cf76d49.cache
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$b271e7dbc0ae3cf76d49.cache
new file mode 100644
index 0000000..07eb409
--- /dev/null
+++ 
b/ApacheCMDA-Backend/project/project/target/config-classes/$b271e7dbc0ae3cf76d49.cache
@@ -0,0 +1 @@
+sbt.Def.SettingsDefinition
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$b271e7dbc0ae3cf76d49.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$b271e7dbc0ae3cf76d49.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$b271e7dbc0ae3cf76d49.class
new file mode 100644
index 0000000..4a883b1
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$b271e7dbc0ae3cf76d49.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$b4ff43989367afa1403c$.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$b4ff43989367afa1403c$.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$b4ff43989367afa1403c$.class
new file mode 100644
index 0000000..b04c241
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$b4ff43989367afa1403c$.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$b4ff43989367afa1403c.cache
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$b4ff43989367afa1403c.cache
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$b4ff43989367afa1403c.cache
new file mode 100644
index 0000000..07eb409
--- /dev/null
+++ 
b/ApacheCMDA-Backend/project/project/target/config-classes/$b4ff43989367afa1403c.cache
@@ -0,0 +1 @@
+sbt.Def.SettingsDefinition
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$b4ff43989367afa1403c.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$b4ff43989367afa1403c.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$b4ff43989367afa1403c.class
new file mode 100644
index 0000000..4168f6f
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$b4ff43989367afa1403c.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$c39657f81aab3e2056b6$.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$c39657f81aab3e2056b6$.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$c39657f81aab3e2056b6$.class
new file mode 100644
index 0000000..f8646e0
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$c39657f81aab3e2056b6$.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$c39657f81aab3e2056b6.cache
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$c39657f81aab3e2056b6.cache
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$c39657f81aab3e2056b6.cache
new file mode 100644
index 0000000..07eb409
--- /dev/null
+++ 
b/ApacheCMDA-Backend/project/project/target/config-classes/$c39657f81aab3e2056b6.cache
@@ -0,0 +1 @@
+sbt.Def.SettingsDefinition
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/project/target/config-classes/$c39657f81aab3e2056b6.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/project/target/config-classes/$c39657f81aab3e2056b6.class
 
b/ApacheCMDA-Backend/project/project/target/config-classes/$c39657f81aab3e2056b6.class
new file mode 100644
index 0000000..9dbd13f
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/project/target/config-classes/$c39657f81aab3e2056b6.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$361a501cc7580ae38f51$$anonfun$$sbtdef$1.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$361a501cc7580ae38f51$$anonfun$$sbtdef$1.class
 
b/ApacheCMDA-Backend/project/target/config-classes/$361a501cc7580ae38f51$$anonfun$$sbtdef$1.class
new file mode 100644
index 0000000..7d667d3
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/target/config-classes/$361a501cc7580ae38f51$$anonfun$$sbtdef$1.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$361a501cc7580ae38f51$.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$361a501cc7580ae38f51$.class 
b/ApacheCMDA-Backend/project/target/config-classes/$361a501cc7580ae38f51$.class
new file mode 100644
index 0000000..7c2f05f
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/target/config-classes/$361a501cc7580ae38f51$.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$361a501cc7580ae38f51.cache
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$361a501cc7580ae38f51.cache 
b/ApacheCMDA-Backend/project/target/config-classes/$361a501cc7580ae38f51.cache
new file mode 100644
index 0000000..07eb409
--- /dev/null
+++ 
b/ApacheCMDA-Backend/project/target/config-classes/$361a501cc7580ae38f51.cache
@@ -0,0 +1 @@
+sbt.Def.SettingsDefinition
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$361a501cc7580ae38f51.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$361a501cc7580ae38f51.class 
b/ApacheCMDA-Backend/project/target/config-classes/$361a501cc7580ae38f51.class
new file mode 100644
index 0000000..fb09ff1
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/target/config-classes/$361a501cc7580ae38f51.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053$$anonfun$root$1.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053$$anonfun$root$1.class
 
b/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053$$anonfun$root$1.class
new file mode 100644
index 0000000..8d291b8
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053$$anonfun$root$1.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053$$anonfun$root$2.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053$$anonfun$root$2.class
 
b/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053$$anonfun$root$2.class
new file mode 100644
index 0000000..2fff9ce
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053$$anonfun$root$2.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053$$anonfun$root$3.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053$$anonfun$root$3.class
 
b/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053$$anonfun$root$3.class
new file mode 100644
index 0000000..4fbb0b0
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053$$anonfun$root$3.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053$$anonfun$root$4.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053$$anonfun$root$4.class
 
b/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053$$anonfun$root$4.class
new file mode 100644
index 0000000..731d3fc
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053$$anonfun$root$4.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053$.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053$.class 
b/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053$.class
new file mode 100644
index 0000000..ea2842a
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053$.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053.cache
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053.cache 
b/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053.cache
new file mode 100644
index 0000000..d8649da
--- /dev/null
+++ 
b/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053.cache
@@ -0,0 +1 @@
+root

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053.class 
b/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053.class
new file mode 100644
index 0000000..ca3d886
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/target/config-classes/$9a7d1e4833c3ca9dd053.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$b538384526c4deb0e565$$anonfun$$sbtdef$1.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$b538384526c4deb0e565$$anonfun$$sbtdef$1.class
 
b/ApacheCMDA-Backend/project/target/config-classes/$b538384526c4deb0e565$$anonfun$$sbtdef$1.class
new file mode 100644
index 0000000..33e3833
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/target/config-classes/$b538384526c4deb0e565$$anonfun$$sbtdef$1.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$b538384526c4deb0e565$.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$b538384526c4deb0e565$.class 
b/ApacheCMDA-Backend/project/target/config-classes/$b538384526c4deb0e565$.class
new file mode 100644
index 0000000..be471e0
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/target/config-classes/$b538384526c4deb0e565$.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$b538384526c4deb0e565.cache
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$b538384526c4deb0e565.cache 
b/ApacheCMDA-Backend/project/target/config-classes/$b538384526c4deb0e565.cache
new file mode 100644
index 0000000..07eb409
--- /dev/null
+++ 
b/ApacheCMDA-Backend/project/target/config-classes/$b538384526c4deb0e565.cache
@@ -0,0 +1 @@
+sbt.Def.SettingsDefinition
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$b538384526c4deb0e565.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$b538384526c4deb0e565.class 
b/ApacheCMDA-Backend/project/target/config-classes/$b538384526c4deb0e565.class
new file mode 100644
index 0000000..873f678
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/target/config-classes/$b538384526c4deb0e565.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$bc8de796e89a6f4ed095$.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$bc8de796e89a6f4ed095$.class 
b/ApacheCMDA-Backend/project/target/config-classes/$bc8de796e89a6f4ed095$.class
new file mode 100644
index 0000000..c4230c7
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/target/config-classes/$bc8de796e89a6f4ed095$.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$bc8de796e89a6f4ed095.cache
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$bc8de796e89a6f4ed095.cache 
b/ApacheCMDA-Backend/project/target/config-classes/$bc8de796e89a6f4ed095.cache
new file mode 100644
index 0000000..07eb409
--- /dev/null
+++ 
b/ApacheCMDA-Backend/project/target/config-classes/$bc8de796e89a6f4ed095.cache
@@ -0,0 +1 @@
+sbt.Def.SettingsDefinition
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$bc8de796e89a6f4ed095.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$bc8de796e89a6f4ed095.class 
b/ApacheCMDA-Backend/project/target/config-classes/$bc8de796e89a6f4ed095.class
new file mode 100644
index 0000000..ef93cbe
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/target/config-classes/$bc8de796e89a6f4ed095.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$d6ff00c38c88eff99a99$$anonfun$$sbtdef$1.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$d6ff00c38c88eff99a99$$anonfun$$sbtdef$1.class
 
b/ApacheCMDA-Backend/project/target/config-classes/$d6ff00c38c88eff99a99$$anonfun$$sbtdef$1.class
new file mode 100644
index 0000000..b386053
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/target/config-classes/$d6ff00c38c88eff99a99$$anonfun$$sbtdef$1.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$d6ff00c38c88eff99a99$.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$d6ff00c38c88eff99a99$.class 
b/ApacheCMDA-Backend/project/target/config-classes/$d6ff00c38c88eff99a99$.class
new file mode 100644
index 0000000..7c675d8
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/target/config-classes/$d6ff00c38c88eff99a99$.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$d6ff00c38c88eff99a99.cache
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$d6ff00c38c88eff99a99.cache 
b/ApacheCMDA-Backend/project/target/config-classes/$d6ff00c38c88eff99a99.cache
new file mode 100644
index 0000000..07eb409
--- /dev/null
+++ 
b/ApacheCMDA-Backend/project/target/config-classes/$d6ff00c38c88eff99a99.cache
@@ -0,0 +1 @@
+sbt.Def.SettingsDefinition
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$d6ff00c38c88eff99a99.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$d6ff00c38c88eff99a99.class 
b/ApacheCMDA-Backend/project/target/config-classes/$d6ff00c38c88eff99a99.class
new file mode 100644
index 0000000..52a03a8
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/target/config-classes/$d6ff00c38c88eff99a99.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$dca917d426c092915b5a$.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$dca917d426c092915b5a$.class 
b/ApacheCMDA-Backend/project/target/config-classes/$dca917d426c092915b5a$.class
new file mode 100644
index 0000000..879fd2b
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/target/config-classes/$dca917d426c092915b5a$.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$dca917d426c092915b5a.cache
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$dca917d426c092915b5a.cache 
b/ApacheCMDA-Backend/project/target/config-classes/$dca917d426c092915b5a.cache
new file mode 100644
index 0000000..07eb409
--- /dev/null
+++ 
b/ApacheCMDA-Backend/project/target/config-classes/$dca917d426c092915b5a.cache
@@ -0,0 +1 @@
+sbt.Def.SettingsDefinition
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$dca917d426c092915b5a.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$dca917d426c092915b5a.class 
b/ApacheCMDA-Backend/project/target/config-classes/$dca917d426c092915b5a.class
new file mode 100644
index 0000000..b45e8c8
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/target/config-classes/$dca917d426c092915b5a.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$faf70ab291bf820f2103$$anonfun$$sbtdef$1.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$faf70ab291bf820f2103$$anonfun$$sbtdef$1.class
 
b/ApacheCMDA-Backend/project/target/config-classes/$faf70ab291bf820f2103$$anonfun$$sbtdef$1.class
new file mode 100644
index 0000000..2db21e1
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/target/config-classes/$faf70ab291bf820f2103$$anonfun$$sbtdef$1.class
 differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$faf70ab291bf820f2103$.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$faf70ab291bf820f2103$.class 
b/ApacheCMDA-Backend/project/target/config-classes/$faf70ab291bf820f2103$.class
new file mode 100644
index 0000000..c317dad
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/target/config-classes/$faf70ab291bf820f2103$.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$faf70ab291bf820f2103.cache
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$faf70ab291bf820f2103.cache 
b/ApacheCMDA-Backend/project/target/config-classes/$faf70ab291bf820f2103.cache
new file mode 100644
index 0000000..07eb409
--- /dev/null
+++ 
b/ApacheCMDA-Backend/project/target/config-classes/$faf70ab291bf820f2103.cache
@@ -0,0 +1 @@
+sbt.Def.SettingsDefinition
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/config-classes/$faf70ab291bf820f2103.class
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/config-classes/$faf70ab291bf820f2103.class 
b/ApacheCMDA-Backend/project/target/config-classes/$faf70ab291bf820f2103.class
new file mode 100644
index 0000000..7373233
Binary files /dev/null and 
b/ApacheCMDA-Backend/project/target/config-classes/$faf70ab291bf820f2103.class 
differ

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/resolution-cache/default/apachecmda-backend-build/scala_2.10/sbt_0.13/0.1-SNAPSHOT/resolved.xml.properties
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/resolution-cache/default/apachecmda-backend-build/scala_2.10/sbt_0.13/0.1-SNAPSHOT/resolved.xml.properties
 
b/ApacheCMDA-Backend/project/target/resolution-cache/default/apachecmda-backend-build/scala_2.10/sbt_0.13/0.1-SNAPSHOT/resolved.xml.properties
new file mode 100644
index 0000000..a0852ee
--- /dev/null
+++ 
b/ApacheCMDA-Backend/project/target/resolution-cache/default/apachecmda-backend-build/scala_2.10/sbt_0.13/0.1-SNAPSHOT/resolved.xml.properties
@@ -0,0 +1,16 @@
+#default#apachecmda-backend-build;0.1-SNAPSHOT resolved revisions
+#Wed Sep 02 14:44:44 PDT 2015
++e\:scalaVersion\:\#@\#\:+2.10\:\#@\#\:+revision\:\#@\#\:+1.0.0\:\#@\#\:+module\:\#@\#\:+sbt-mocha\:\#@\#\:+e\:sbtVersion\:\#@\#\:+0.13\:\#@\#\:+organisation\:\#@\#\:+com.typesafe.sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:=1.0.0
 release 1.0.0 null
++revision\:\#@\#\:+2.10.4\:\#@\#\:+module\:\#@\#\:+scala-library\:\#@\#\:+organisation\:\#@\#\:+org.scala-lang\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:=2.10.4
 ? 2.10.4 null
++e\:scalaVersion\:\#@\#\:+2.10\:\#@\#\:+revision\:\#@\#\:+1.0.0\:\#@\#\:+module\:\#@\#\:+sbt-less\:\#@\#\:+e\:sbtVersion\:\#@\#\:+0.13\:\#@\#\:+organisation\:\#@\#\:+com.typesafe.sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:=1.0.0
 release 1.0.0 null
++e\:scalaVersion\:\#@\#\:+2.10\:\#@\#\:+revision\:\#@\#\:+1.5.2\:\#@\#\:+module\:\#@\#\:+sbt-idea\:\#@\#\:+e\:sbtVersion\:\#@\#\:+0.13\:\#@\#\:+organisation\:\#@\#\:+com.github.mpeltonen\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:=1.5.2
 release 1.5.2 null
++e\:scalaVersion\:\#@\#\:+2.10\:\#@\#\:+revision\:\#@\#\:+1.0.1\:\#@\#\:+module\:\#@\#\:+sbt-rjs\:\#@\#\:+e\:sbtVersion\:\#@\#\:+0.13\:\#@\#\:+organisation\:\#@\#\:+com.typesafe.sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:=1.0.1
 release 1.0.1 null
++revision\:\#@\#\:+2.10.4\:\#@\#\:+module\:\#@\#\:+scala-compiler\:\#@\#\:+organisation\:\#@\#\:+org.scala-lang\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:=2.10.4
 release 2.10.4 null
++e\:scalaVersion\:\#@\#\:+2.10\:\#@\#\:+revision\:\#@\#\:+2.3.7\:\#@\#\:+module\:\#@\#\:+sbt-plugin\:\#@\#\:+e\:sbtVersion\:\#@\#\:+0.13\:\#@\#\:+organisation\:\#@\#\:+com.typesafe.play\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:=2.3.7
 release 2.3.7 null
++e\:scalaVersion\:\#@\#\:+2.10\:\#@\#\:+revision\:\#@\#\:+1.0.0\:\#@\#\:+module\:\#@\#\:+sbt-coffeescript\:\#@\#\:+e\:sbtVersion\:\#@\#\:+0.13\:\#@\#\:+organisation\:\#@\#\:+com.typesafe.sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:=1.0.0
 release 1.0.0 null
++e\:scalaVersion\:\#@\#\:+2.10\:\#@\#\:+revision\:\#@\#\:+1.0.0\:\#@\#\:+module\:\#@\#\:+sbt-digest\:\#@\#\:+e\:sbtVersion\:\#@\#\:+0.13\:\#@\#\:+organisation\:\#@\#\:+com.typesafe.sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:=1.0.0
 release 1.0.0 null
++revision\:\#@\#\:+0.13.5\:\#@\#\:+module\:\#@\#\:+sbt\:\#@\#\:+organisation\:\#@\#\:+org.scala-sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:=0.13.5
 release 0.13.5 null
++e\:scalaVersion\:\#@\#\:+2.10\:\#@\#\:+revision\:\#@\#\:+2.3.0\:\#@\#\:+module\:\#@\#\:+sbteclipse-plugin\:\#@\#\:+e\:sbtVersion\:\#@\#\:+0.13\:\#@\#\:+organisation\:\#@\#\:+com.typesafe.sbteclipse\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:=2.3.0
 ? 2.4.0 null
++e\:scalaVersion\:\#@\#\:+2.10\:\#@\#\:+revision\:\#@\#\:+1.0.1\:\#@\#\:+module\:\#@\#\:+sbt-jshint\:\#@\#\:+e\:sbtVersion\:\#@\#\:+0.13\:\#@\#\:+organisation\:\#@\#\:+com.typesafe.sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:=1.0.1
 release 1.0.1 null
++e\:scalaVersion\:\#@\#\:+2.10\:\#@\#\:+revision\:\#@\#\:+2.1.6\:\#@\#\:+module\:\#@\#\:+jacoco4sbt\:\#@\#\:+e\:sbtVersion\:\#@\#\:+0.13\:\#@\#\:+organisation\:\#@\#\:+de.johoop\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:=2.1.6
 release 2.1.6 null
++e\:scalaVersion\:\#@\#\:+2.10\:\#@\#\:+revision\:\#@\#\:+0.1.6.2\:\#@\#\:+module\:\#@\#\:+sbt-echo\:\#@\#\:+e\:sbtVersion\:\#@\#\:+0.13\:\#@\#\:+organisation\:\#@\#\:+com.typesafe.sbt\:\#@\#\:+branch\:\#@\#\:+@\#\:NULL\:\#@\:\#@\#\:=0.1.6.2
 release 0.1.6.2 null

http://git-wip-us.apache.org/repos/asf/incubator-cmda/blob/37774c92/ApacheCMDA-Backend/project/target/resolution-cache/default/apachecmda-backend-build/scala_2.10/sbt_0.13/0.1-SNAPSHOT/resolved.xml.xml
----------------------------------------------------------------------
diff --git 
a/ApacheCMDA-Backend/project/target/resolution-cache/default/apachecmda-backend-build/scala_2.10/sbt_0.13/0.1-SNAPSHOT/resolved.xml.xml
 
b/ApacheCMDA-Backend/project/target/resolution-cache/default/apachecmda-backend-build/scala_2.10/sbt_0.13/0.1-SNAPSHOT/resolved.xml.xml
new file mode 100644
index 0000000..4356897
--- /dev/null
+++ 
b/ApacheCMDA-Backend/project/target/resolution-cache/default/apachecmda-backend-build/scala_2.10/sbt_0.13/0.1-SNAPSHOT/resolved.xml.xml
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ivy-module version="2.0" xmlns:e="http://ant.apache.org/ivy/extra";>
+       <info organisation="default"
+               module="apachecmda-backend-build"
+               revision="0.1-SNAPSHOT"
+               status="integration"
+               publication="20150902144438"
+               e:scalaVersion="2.10" e:sbtVersion="0.13"
+       >
+               <description>
+               apachecmda-backend-build
+               </description>
+       </info>
+       <configurations>
+               <conf name="compile" visibility="public" description=""/>
+               <conf name="runtime" visibility="public" description="" 
extends="compile"/>
+               <conf name="test" visibility="public" description="" 
extends="runtime"/>
+               <conf name="provided" visibility="public" description=""/>
+               <conf name="optional" visibility="public" description=""/>
+               <conf name="compile-internal" visibility="private" 
description="" extends="compile,optional,provided"/>
+               <conf name="runtime-internal" visibility="private" 
description="" extends="runtime,optional"/>
+               <conf name="test-internal" visibility="private" description="" 
extends="test,optional,provided"/>
+               <conf name="plugin" visibility="private" description=""/>
+               <conf name="sources" visibility="public" description=""/>
+               <conf name="docs" visibility="public" description=""/>
+               <conf name="pom" visibility="public" description=""/>
+               <conf name="scala-tool" visibility="private" description=""/>
+       </configurations>
+       <publications>
+               <artifact name="apachecmda-backend-build" type="pom" ext="pom" 
conf="pom"/>
+               <artifact name="apachecmda-backend-build" type="jar" ext="jar" 
conf="compile"/>
+               <artifact name="apachecmda-backend-build" type="src" ext="jar" 
conf="sources" e:classifier="sources"/>
+               <artifact name="apachecmda-backend-build" type="doc" ext="jar" 
conf="docs" e:classifier="javadoc"/>
+       </publications>
+       <dependencies>
+               <dependency org="org.scala-lang" name="scala-compiler" 
rev="2.10.4" conf="scala-tool->default,optional(default)"/>
+               <dependency org="org.scala-lang" name="scala-library" 
rev="2.10.4" 
conf="scala-tool->default,optional(default);provided->default(compile)"/>
+               <dependency org="org.scala-sbt" name="sbt" rev="0.13.5" 
conf="provided->default(compile)"/>
+               <dependency org="com.typesafe.sbt" name="sbt-echo" 
rev="0.1.6.2" conf="compile->default(compile)" e:scalaVersion="2.10" 
e:sbtVersion="0.13"/>
+               <dependency org="com.typesafe.sbteclipse" 
name="sbteclipse-plugin" rev="2.3.0" conf="compile->default(compile)" 
e:scalaVersion="2.10" e:sbtVersion="0.13"/>
+               <dependency org="com.github.mpeltonen" name="sbt-idea" 
rev="1.5.2" conf="compile->default(compile)" e:scalaVersion="2.10" 
e:sbtVersion="0.13"/>
+               <dependency org="com.typesafe.play" name="sbt-plugin" 
rev="2.3.7" conf="compile->default(compile)" e:scalaVersion="2.10" 
e:sbtVersion="0.13"/>
+               <dependency org="com.typesafe.sbt" name="sbt-coffeescript" 
rev="1.0.0" conf="compile->default(compile)" e:scalaVersion="2.10" 
e:sbtVersion="0.13"/>
+               <dependency org="com.typesafe.sbt" name="sbt-less" rev="1.0.0" 
conf="compile->default(compile)" e:scalaVersion="2.10" e:sbtVersion="0.13"/>
+               <dependency org="com.typesafe.sbt" name="sbt-jshint" 
rev="1.0.1" conf="compile->default(compile)" e:scalaVersion="2.10" 
e:sbtVersion="0.13"/>
+               <dependency org="com.typesafe.sbt" name="sbt-rjs" rev="1.0.1" 
conf="compile->default(compile)" e:scalaVersion="2.10" e:sbtVersion="0.13"/>
+               <dependency org="com.typesafe.sbt" name="sbt-digest" 
rev="1.0.0" conf="compile->default(compile)" e:scalaVersion="2.10" 
e:sbtVersion="0.13"/>
+               <dependency org="com.typesafe.sbt" name="sbt-mocha" rev="1.0.0" 
conf="compile->default(compile)" e:scalaVersion="2.10" e:sbtVersion="0.13"/>
+               <dependency org="de.johoop" name="jacoco4sbt" rev="2.1.6" 
conf="compile->default(compile)" e:scalaVersion="2.10" e:sbtVersion="0.13"/>
+       </dependencies>
+</ivy-module>

Reply via email to