16 lines
492 B
Java
16 lines
492 B
Java
package net.geedge.confagent;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.context.annotation.PropertySource;
|
|
|
|
@SpringBootApplication
|
|
@PropertySource(value = { "classpath:version.properties" }, encoding = "utf-8", ignoreResourceNotFound = true)
|
|
public class ConfagentApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(ConfagentApplication.class, args);
|
|
}
|
|
|
|
}
|