File tree 2 files changed +14
-10
lines changed
2 files changed +14
-10
lines changed Original file line number Diff line number Diff line change 30
30
- name : Build with Maven
31
31
run : mvn -B package --file pom.xml -Dmaven.test.skip=true
32
32
33
- - name : Upload coverage to Codecov
34
- - uses : codecov/codecov-action@v1
35
- with :
36
- token : ${{ secrets.CODECOV_TOKEN }} # not required for public repos
37
- file : ./coverage.xml # optional
38
- flags : unittests # optional
39
- name : codecov-umbrella # optional
40
- fail_ci_if_error : true # optional (default = false)
41
-
42
33
- name : Upload Maven build artifact
43
34
uses : actions/upload-artifact@v1
44
35
with :
Original file line number Diff line number Diff line change 26
26
<groupId >org.springframework.boot</groupId >
27
27
<artifactId >spring-boot-starter</artifactId >
28
28
<version >2.2.6.RELEASE</version >
29
+ <exclusions >
30
+ <exclusion >
31
+ <groupId >org.springframework.boot</groupId >
32
+ <artifactId >spring-boot-starter-logging</artifactId >
33
+ </exclusion >
34
+ </exclusions >
29
35
</dependency >
30
36
31
37
<dependency >
32
38
<groupId >org.springframework.boot</groupId >
33
39
<artifactId >spring-boot-starter-web</artifactId >
34
40
<version >2.2.6.RELEASE</version >
41
+ <exclusions >
42
+ <exclusion >
43
+ <groupId >org.springframework.boot</groupId >
44
+ <artifactId >spring-boot-starter-logging</artifactId >
45
+ </exclusion >
46
+ </exclusions >
35
47
</dependency >
36
48
37
49
<dependency >
73
85
<artifactId >junit-jupiter-engine</artifactId >
74
86
<version >${junit.jupiter.version} </version >
75
87
</dependency >
88
+
76
89
</dependencies >
77
90
</plugin >
78
91
85
98
<format >html</format >
86
99
<format >xml</format >
87
100
</formats >
88
- <check />
101
+ <check />
89
102
</configuration >
90
103
</plugin >
91
104
You can’t perform that action at this time.
0 commit comments