File tree 3 files changed +22
-13
lines changed
3 files changed +22
-13
lines changed Original file line number Diff line number Diff line change 2
2
.classpath
3
3
.project
4
4
.settings /
5
+ .idea
6
+ .vscode
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ before_install:
9
9
- .travis/prepare
10
10
11
11
script :
12
- - mvn cobertura:cobertura
12
+ - mvn clean test
13
13
14
14
after_success :
15
15
- bash <(curl -s https://codecov.io/bash)
Original file line number Diff line number Diff line change 142
142
</execution >
143
143
</executions >
144
144
</plugin >
145
- <plugin >
146
- <groupId >org.codehaus.mojo</groupId >
147
- <artifactId >cobertura-maven-plugin</artifactId >
148
- <version >2.7</version >
149
- <configuration >
150
- <formats >
151
- <format >html</format >
152
- <format >xml</format >
153
- </formats >
154
- <check />
155
- </configuration >
145
+ <plugin >
146
+ <groupId >org.jacoco</groupId >
147
+ <artifactId >jacoco-maven-plugin</artifactId >
148
+ <version >0.8.5</version >
149
+ <executions >
150
+ <execution >
151
+ <goals >
152
+ <goal >prepare-agent</goal >
153
+ </goals >
154
+ </execution >
155
+ <execution >
156
+ <id >report</id >
157
+ <phase >test</phase >
158
+ <goals >
159
+ <goal >report</goal >
160
+ </goals >
161
+ </execution >
162
+ </executions >
156
163
</plugin >
157
- </plugins >
164
+ </plugins >
158
165
</build >
159
166
160
167
<version >1.0.1</version >
You can’t perform that action at this time.
0 commit comments