Project

General

Profile

1 45840 michele.ar
package eu.dnetlib.enabling.app;
2 45508 michele.ar
3
import org.springframework.boot.SpringApplication;
4
import org.springframework.boot.autoconfigure.SpringBootApplication;
5 45546 michele.ar
import org.springframework.context.annotation.ComponentScan;
6 46211 claudio.at
import org.springframework.context.annotation.EnableAspectJAutoProxy;
7 45546 michele.ar
import org.springframework.scheduling.annotation.EnableScheduling;
8 45508 michele.ar
9 45840 michele.ar
import springfox.documentation.swagger2.annotations.EnableSwagger2;
10
11 45508 michele.ar
@SpringBootApplication
12 45546 michele.ar
@ComponentScan("eu.dnetlib")
13
@EnableScheduling
14 45840 michele.ar
@EnableSwagger2
15 46211 claudio.at
@EnableAspectJAutoProxy
16 45840 michele.ar
public class MainApplication {
17 45508 michele.ar
18
	public static void main(final String[] args) {
19 45840 michele.ar
		SpringApplication.run(MainApplication.class, args);
20 45508 michele.ar
	}
21
22
}