File tree Expand file tree Collapse file tree 4 files changed +4
-10
lines changed
adminservice/src/main/java/nu/yona/server
analysisservice/src/main/java/nu/yona/server
appservice/src/main/java/nu/yona/server Expand file tree Collapse file tree 4 files changed +4
-10
lines changed Original file line number Diff line number Diff line change 12
12
import org .springframework .beans .factory .annotation .Autowired ;
13
13
import org .springframework .boot .SpringApplication ;
14
14
import org .springframework .boot .autoconfigure .SpringBootApplication ;
15
- import org .springframework .boot .autoconfigure .security .SecurityFilterAutoConfiguration ;
16
15
import org .springframework .cache .annotation .EnableCaching ;
17
16
import org .springframework .context .annotation .Bean ;
18
17
import org .springframework .context .annotation .ComponentScan ;
35
34
import springfox .documentation .swagger2 .annotations .EnableSwagger2 ;
36
35
37
36
@ ComponentScan ("nu.yona.server" )
38
- // Exclude because of https://github.com/spring-projects/spring-boot/issues/4919
39
- @ SpringBootApplication (exclude = { SecurityFilterAutoConfiguration .class })
37
+ @ SpringBootApplication
40
38
@ EnableSwagger2
41
39
@ EnableCaching
42
40
public class AdminServiceApplication
Original file line number Diff line number Diff line change 8
8
9
9
import org .springframework .boot .SpringApplication ;
10
10
import org .springframework .boot .autoconfigure .SpringBootApplication ;
11
- import org .springframework .boot .autoconfigure .security .SecurityFilterAutoConfiguration ;
12
11
import org .springframework .cache .annotation .EnableCaching ;
13
12
import org .springframework .context .annotation .Bean ;
14
13
import org .springframework .web .bind .annotation .RequestMethod ;
22
21
import springfox .documentation .spring .web .plugins .Docket ;
23
22
import springfox .documentation .swagger2 .annotations .EnableSwagger2 ;
24
23
25
- // Exclude because of https://github.com/spring-projects/spring-boot/issues/4919
26
- @ SpringBootApplication (exclude = { SecurityFilterAutoConfiguration .class })
24
+ @ SpringBootApplication
27
25
@ EnableSwagger2
28
26
@ EnableCaching
29
27
public class AnalysisServiceApplication
Original file line number Diff line number Diff line change 8
8
9
9
import org .springframework .boot .SpringApplication ;
10
10
import org .springframework .boot .autoconfigure .SpringBootApplication ;
11
- import org .springframework .boot .autoconfigure .security .SecurityFilterAutoConfiguration ;
12
11
import org .springframework .cache .annotation .EnableCaching ;
13
12
import org .springframework .context .annotation .Bean ;
14
13
import org .springframework .web .bind .annotation .RequestMethod ;
22
21
import springfox .documentation .spring .web .plugins .Docket ;
23
22
import springfox .documentation .swagger2 .annotations .EnableSwagger2 ;
24
23
25
- // Exclude because of https://github.com/spring-projects/spring-boot/issues/4919
26
- @ SpringBootApplication (exclude = { SecurityFilterAutoConfiguration .class })
24
+ @ SpringBootApplication
27
25
@ EnableSwagger2
28
26
@ EnableCaching
29
27
public class AppServiceApplication
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ subprojects {
24
24
targetCompatibility = 1.8
25
25
26
26
project. ext {
27
- springBootVersion = ' 1.3.1 .RELEASE'
27
+ springBootVersion = ' 1.3.2 .RELEASE'
28
28
yona_adminservice_scheme= project. hasProperty(' yona_adminservice_scheme' )? project. yona_adminservice_scheme : ' http'
29
29
yona_adminservice_host= project. hasProperty(' yona_adminservice_host' )? project. yona_adminservice_host : ' localhost'
30
30
yona_adminservice_port= project. hasProperty(' yona_adminservice_port' )? project. yona_adminservice_port : ' 8080'
You can’t perform that action at this time.
0 commit comments