File tree 6 files changed +31
-3
lines changed
src/main/lombok/com/exonum/client/response
6 files changed +31
-3
lines changed Original file line number Diff line number Diff line change 270
270
</execution >
271
271
</executions >
272
272
</plugin >
273
+
274
+ <plugin >
275
+ <groupId >org.projectlombok</groupId >
276
+ <artifactId >lombok-maven-plugin</artifactId >
277
+ <version >1.18.6.0</version >
278
+ <executions >
279
+ <execution >
280
+ <phase >generate-sources</phase >
281
+ <goals >
282
+ <goal >delombok</goal >
283
+ </goals >
284
+ </execution >
285
+ </executions >
286
+ </plugin >
273
287
</plugins >
274
288
</build >
275
289
291
305
<groupId >org.jacoco</groupId >
292
306
<artifactId >jacoco-maven-plugin</artifactId >
293
307
<version >0.8.3</version >
308
+ <configuration >
309
+ <excludes >
310
+ <!--
311
+ Exclude lombok annotated classes which are located at `src/main/lombok`,
312
+ because the plugin can't be configured to look for sources there.
313
+ -->
314
+ <exclude >com/exonum/client/response/Block.class</exclude >
315
+ <exclude >com/exonum/client/response/Block*BlockBuilder.class</exclude >
316
+ <exclude >com/exonum/client/response/BlockResponse.class</exclude >
317
+ <exclude >com/exonum/client/response/BlocksResponse.class</exclude >
318
+ <exclude >com/exonum/client/response/HealthCheckInfo.class</exclude >
319
+ <exclude >com/exonum/client/response/TransactionResponse.class</exclude >
320
+ </excludes >
321
+ </configuration >
294
322
<executions >
295
323
<execution >
296
324
<id >prepare-jacoco-agent</id >
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ public class Block {
43
43
int proposerId ;
44
44
45
45
/**
46
- * Returns the height of this block which is a distance between the last block and the "genesis"
46
+ * The height of this block which is a distance between the last block and the "genesis"
47
47
* block. Genesis block has 0 height. Therefore, the blockchain height is equal to
48
48
* the number of blocks plus one.
49
49
*
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 22
22
@ Value
23
23
public class HealthCheckInfo {
24
24
/**
25
- * Shows information about whether it is possible to achieve the consensus between
26
- * validators in the current state.
25
+ * Consensus status shows/indicates whether it is possible
26
+ * to achieve the consensus between validators in the current network state.
27
27
*/
28
28
ConsensusStatus consensusStatus ;
29
29
File renamed without changes.
You can’t perform that action at this time.
0 commit comments