package de.otto.edison.example; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.annotation.PropertySource; import static org.springframework.boot.SpringApplication.run; @PropertySource("version.properties") @SpringBootApplication(scanBasePackages = "de.otto.edison") public class ExampleCacheServer { public static void main(String[] args) { run(ExampleCacheServer.class, args); } }