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 37
37
<scope >test</scope >
38
38
<exclusions >
39
39
<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 >
42
50
</exclusion >
43
51
</exclusions >
44
52
</dependency >
53
+ <dependency >
54
+ <groupId >org.springframework.boot</groupId >
55
+ <artifactId >spring-boot-starter-log4j2</artifactId >
56
+ </dependency >
45
57
</dependencies >
46
58
47
59
<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 89
89
<artifactId >operator-framework</artifactId >
90
90
<version >${project.version} </version >
91
91
</dependency >
92
- <dependency >
93
- <groupId >org.slf4j</groupId >
94
- <artifactId >slf4j-api</artifactId >
95
- </dependency >
96
92
<dependency >
97
93
<groupId >org.mockito</groupId >
98
94
<artifactId >mockito-core</artifactId >
You can’t perform that action at this time.
0 commit comments