You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by di...@apache.org on 2023/07/21 18:03:55 UTC

[airavata-mft] branch master updated: Temporarily removing the agent starting class

This is an automated email from the ASF dual-hosted git repository.

dimuthuupe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-mft.git


The following commit(s) were added to refs/heads/master by this push:
     new 190493a  Temporarily removing the agent starting class
190493a is described below

commit 190493a5129161ab7a79bfff70dab9ed5cca13ba
Author: DImuthuUpe <di...@gmail.com>
AuthorDate: Fri Jul 21 14:03:49 2023 -0400

    Temporarily removing the agent starting class
---
 .../standalone/server/AgentServiceApplication.java | 37 ----------------------
 1 file changed, 37 deletions(-)

diff --git a/standalone-service/src/main/java/org/apache/airavata/mft/standalone/server/AgentServiceApplication.java b/standalone-service/src/main/java/org/apache/airavata/mft/standalone/server/AgentServiceApplication.java
deleted file mode 100644
index bfa79ee..0000000
--- a/standalone-service/src/main/java/org/apache/airavata/mft/standalone/server/AgentServiceApplication.java
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.airavata.mft.standalone.server;
-
-import org.springframework.boot.SpringApplication;
-import org.springframework.boot.autoconfigure.SpringBootApplication;
-import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
-import org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration;
-import org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration;
-import org.springframework.context.annotation.ComponentScan;
-
-@ComponentScan(basePackages = {"org.apache.airavata.mft.agent"})
-@SpringBootApplication(exclude = {
-        DataSourceAutoConfiguration.class,
-        DataSourceTransactionManagerAutoConfiguration.class,
-        HibernateJpaAutoConfiguration.class
-})
-public class AgentServiceApplication {
-    public static void main(String[] args) {
-        SpringApplication.run(AgentServiceApplication.class, args);
-    }
-}