File tree 7 files changed +33
-57
lines changed
src/test/java/software/reloadly/sdk/core
7 files changed +33
-57
lines changed Original file line number Diff line number Diff line change 9
9
# Reloadly SDK for Java
10
10
11
11
[ ![ CircleCI] [ circle-ci-badge ]] [ circle-ci-url ]
12
- [ ![ codecov] [ codecov-badge ]] [ codecov-url ]
13
12
[ ![ MIT] [ mit-badge ]] [ mit-url ]
14
13
[ ![ Maven Central] [ maven-badge ]] [ maven-url ]
15
14
Original file line number Diff line number Diff line change 36
36
</dependency >
37
37
</dependencies >
38
38
39
+ <build >
40
+ <plugins >
41
+ <plugin >
42
+ <groupId >org.jacoco</groupId >
43
+ <artifactId >jacoco-maven-plugin</artifactId >
44
+ </plugin >
45
+ </plugins >
46
+ </build >
47
+
39
48
</project >
Original file line number Diff line number Diff line change 27
27
</dependency >
28
28
</dependencies >
29
29
30
-
30
+ <build >
31
+ <plugins >
32
+ <plugin >
33
+ <groupId >org.jacoco</groupId >
34
+ <artifactId >jacoco-maven-plugin</artifactId >
35
+ </plugin >
36
+ </plugins >
37
+ </build >
31
38
</project >
Original file line number Diff line number Diff line change 59
59
<build >
60
60
<plugins >
61
61
<plugin >
62
- <groupId >org.apache.maven.plugins</groupId >
63
- <artifactId >maven-surefire-plugin</artifactId >
64
- <version >${maven-surefire-plugin.version} </version >
62
+ <groupId >org.jacoco</groupId >
63
+ <artifactId >jacoco-maven-plugin</artifactId >
65
64
</plugin >
66
65
</plugins >
67
66
</build >
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 36
36
</dependency >
37
37
</dependencies >
38
38
39
+ <build >
40
+ <plugins >
41
+ <plugin >
42
+ <groupId >org.jacoco</groupId >
43
+ <artifactId >jacoco-maven-plugin</artifactId >
44
+ </plugin >
45
+ </plugins >
46
+ </build >
47
+
39
48
</project >
Original file line number Diff line number Diff line change 60
60
<junit-jupiter .version>5.8.2</junit-jupiter .version>
61
61
<maven-gpg-plugin .version>1.6</maven-gpg-plugin .version>
62
62
<jackson-databind .version>2.13.1</jackson-databind .version>
63
+ <jacoco-maven-plugin .version>0.8.7</jacoco-maven-plugin .version>
63
64
<maven-source-plugin .version>3.2.1</maven-source-plugin .version>
64
65
<maven-javadoc-plugin .version>3.2.0</maven-javadoc-plugin .version>
65
- <jacoco-maven-plugin .version>0.8.6</jacoco-maven-plugin .version>
66
66
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
67
67
<maven-compiler-plugin .version>3.8.1</maven-compiler-plugin .version>
68
68
<maven-surefire-plugin .version>2.22.2</maven-surefire-plugin .version>
196
196
<version >${jacoco-maven-plugin.version} </version >
197
197
<executions >
198
198
<execution >
199
+ <id >prepare-agent</id >
200
+ <phase >initialize</phase >
199
201
<goals >
200
202
<goal >prepare-agent</goal >
201
203
</goals >
202
204
</execution >
203
205
<execution >
204
206
<id >report</id >
205
- <phase >prepare-package</phase >
206
207
<goals >
207
- <goal >report</goal >
208
+ <goal >report-aggregate </goal >
208
209
</goals >
210
+ <phase >verify</phase >
209
211
</execution >
210
212
</executions >
211
213
</plugin >
You can’t perform that action at this time.
0 commit comments