All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.imunity.furms.server.FurmsServerApplication Maven / Gradle / Ivy

There is a newer version: 4.3.1
Show newest version
/*
 * Copyright (c) 2020 Bixbit s.c. All rights reserved.
 * See LICENSE file for licensing information.
 */
package io.imunity.furms.server;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
import org.springframework.scheduling.annotation.EnableScheduling;

@SpringBootApplication(scanBasePackages = "io.imunity.furms")
@ConfigurationPropertiesScan("io.imunity.furms")
@EnableScheduling
public class FurmsServerApplication {
	public static void main(String[] args) {
		SpringApplication.run(FurmsServerApplication.class, args);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy