com.adobe.api.platform.msc.SpringBootApplication Maven / Gradle / Ivy
/*
* Copyright 2016 Adobe Systems Incorporated. All rights reserved.
*
* This file is licensed 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 REPRESENTATIONS OF ANY KIND,
* either express or implied. See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.adobe.api.platform.msc;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.scheduling.annotation.EnableScheduling;
/**
* User: ccristia
* Date: 3/6/14
*/
@ComponentScan({"${msc.scan.packages:com.adobe.api.platform}", "com.adobe.api.platform.msc"})
@EnableAutoConfiguration
@EnableScheduling
public class SpringBootApplication {
public static void main(String[] args) throws Exception {
SpringApplication.run(SpringBootApplication.class, args);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy