File tree Expand file tree Collapse file tree 9 files changed +14
-9
lines changed
springdoc-openapi-kotlin/src/test
kotlin/test/org/springdoc/api
springdoc-openapi-webflux-core
springdoc-openapi-webmvc-core Expand file tree Collapse file tree 9 files changed +14
-9
lines changed Original file line number Diff line number Diff line change 13
13
<parent >
14
14
<groupId >org.springframework.boot</groupId >
15
15
<artifactId >spring-boot-starter-parent</artifactId >
16
- <version >2.4.0-M4 </version >
16
+ <version >2.4.0-SNAPSHOT </version >
17
17
</parent >
18
18
19
19
<licenses >
Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ import org.springframework.boot.autoconfigure.SpringBootApplication
22
22
import org.springframework.context.annotation.ComponentScan
23
23
import test.org.springdoc.api.AbstractKotlinSpringDocTest
24
24
25
- @ComponentScan(basePackages = [" org.springdoc" , " test.org.springdoc.api.app2" ])
26
25
class SpringDocApp2Test : AbstractKotlinSpringDocTest () {
27
26
28
27
@SpringBootApplication
28
+ @ComponentScan(basePackages = [" org.springdoc" , " test.org.springdoc.api.app2" ])
29
29
open class DemoApplication
30
30
31
31
}
Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ import org.springframework.boot.autoconfigure.SpringBootApplication
22
22
import org.springframework.context.annotation.ComponentScan
23
23
import test.org.springdoc.api.AbstractKotlinSpringDocTest
24
24
25
- @ComponentScan(basePackages = [" org.springdoc" , " test.org.springdoc.api.app3" ])
26
25
class SpringDocApp3Test : AbstractKotlinSpringDocTest () {
27
26
28
27
@SpringBootApplication
28
+ @ComponentScan(basePackages = [" org.springdoc" , " test.org.springdoc.api.app3" ])
29
29
open class DemoApplication
30
30
31
31
}
Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ import org.springframework.boot.autoconfigure.SpringBootApplication
22
22
import org.springframework.context.annotation.ComponentScan
23
23
import test.org.springdoc.api.AbstractKotlinSpringDocTest
24
24
25
- @ComponentScan(basePackages = [" org.springdoc" , " test.org.springdoc.api.app4" ])
26
25
class SpringDocApp4Test : AbstractKotlinSpringDocTest () {
27
26
28
27
@SpringBootApplication
28
+ @ComponentScan(basePackages = [" org.springdoc" , " test.org.springdoc.api.app4" ])
29
29
open class DemoApplication
30
30
31
31
}
Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ import org.springframework.boot.autoconfigure.SpringBootApplication
22
22
import org.springframework.context.annotation.ComponentScan
23
23
import test.org.springdoc.api.AbstractKotlinSpringDocTest
24
24
25
- @ComponentScan(basePackages = [" org.springdoc" , " test.org.springdoc.api.app5" ])
26
25
class SpringDocApp5Test : AbstractKotlinSpringDocTest () {
27
26
28
27
@SpringBootApplication
28
+ @ComponentScan(basePackages = [" org.springdoc" , " test.org.springdoc.api.app5" ])
29
29
open class DemoApplication
30
30
31
31
}
Original file line number Diff line number Diff line change 1
1
spring :
2
2
main :
3
3
banner-mode : " off"
4
- lazy-initialization : true
4
+ lazy-initialization : true
5
+ logging :
6
+ level :
7
+ root : ERROR
8
+ pattern :
9
+ console : ' %m%n'
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<configuration >
3
- <root level =" off" />
3
+ <include resource =" org/springframework/boot/logging/logback/base.xml" />
4
+ <logger name =" org.springframework" level =" ERROR" />
5
+ <logger name =" test.org.springdoc.api" level =" ERROR" />
4
6
</configuration >
Original file line number Diff line number Diff line change 16
16
<dependency >
17
17
<groupId >org.springframework</groupId >
18
18
<artifactId >spring-webflux</artifactId >
19
- <version >5.3.0-SNAPSHOT</version >
20
19
</dependency >
21
20
<!-- Actuator dependencies -->
22
21
<dependency >
Original file line number Diff line number Diff line change 16
16
<dependency >
17
17
<groupId >org.springframework</groupId >
18
18
<artifactId >spring-webmvc</artifactId >
19
- <version >5.3.0-SNAPSHOT</version >
20
19
</dependency >
21
20
<!-- Actuator dependencies -->
22
21
<dependency >
You can’t perform that action at this time.
0 commit comments