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

pl.codewise.spotty.app.SpottyApplication Maven / Gradle / Ivy

The newest version!
package pl.codewise.spotty.app;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Import;
import org.springframework.context.annotation.PropertySource;
import org.springframework.scheduling.annotation.EnableScheduling;
import pl.codewise.spotty.core.CoreConfiguration;

@SpringBootApplication
@EnableScheduling
@Import(CoreConfiguration.class)
@PropertySource(value = "classpath:/git.properties", ignoreResourceNotFound = true)
public class SpottyApplication {

    public static void main(String[] args) {
        SpringApplication.run(SpottyApplication.class, args);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy