File tree Expand file tree Collapse file tree 3 files changed +26
-6
lines changed
samples/spring-boot-auto-config
src/test/java/com/github/containersolutions/operator/sample Expand file tree Collapse file tree 3 files changed +26
-6
lines changed Original file line number Diff line number Diff line change 3737 <scope >test</scope >
3838 <exclusions >
3939 <exclusion >
40- <groupId >junit</groupId >
41- <artifactId >junit</artifactId >
40+ <groupId >org.junit.vintage</groupId >
41+ <artifactId >junit-vintage-engine</artifactId >
42+ </exclusion >
43+ <exclusion >
44+ <groupId >org.springframework.boot</groupId >
45+ <artifactId >spring-boot-starter-logging</artifactId >
46+ </exclusion >
47+ <exclusion >
48+ <groupId >org.skyscreamer</groupId >
49+ <artifactId >jsonassert</artifactId >
4250 </exclusion >
4351 </exclusions >
4452 </dependency >
53+ <dependency >
54+ <groupId >org.springframework.boot</groupId >
55+ <artifactId >spring-boot-starter-log4j2</artifactId >
56+ </dependency >
4557 </dependencies >
4658
4759 <dependencyManagement >
Original file line number Diff line number Diff line change 1+ package com .github .containersolutions .operator .sample ;
2+
3+ import org .junit .jupiter .api .Test ;
4+ import org .springframework .boot .test .context .SpringBootTest ;
5+
6+ @ SpringBootTest
7+ public class SpringBootStarterSampleApplicationIT {
8+
9+ @ Test
10+ void contextLoads () {
11+ }
12+ }
Original file line number Diff line number Diff line change 8989 <artifactId >operator-framework</artifactId >
9090 <version >${project.version} </version >
9191 </dependency >
92- <dependency >
93- <groupId >org.slf4j</groupId >
94- <artifactId >slf4j-api</artifactId >
95- </dependency >
9692 <dependency >
9793 <groupId >org.mockito</groupId >
9894 <artifactId >mockito-core</artifactId >
You can’t perform that action at this time.
0 commit comments