File tree 2 files changed +19
-1
lines changed
2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -599,7 +599,7 @@ usually a Jackson module.
599
599
` master ` branch is for developing the next major Jackson version -- 3.0 -- but there
600
600
are active maintenance branches in which much of development happens:
601
601
602
- * ` 2.19 ` is the branch for "next" minor version to release (as of July 2023 )
602
+ * ` 2.19 ` is the branch for "next" minor version to release (as of February 2025 )
603
603
* ` 2.18 ` is the current stable minor 2.x version
604
604
* ` 2.17 ` is for selected backported fixes
605
605
Original file line number Diff line number Diff line change 54
54
55
55
<version .bytebuddy>1.15.10</version .bytebuddy>
56
56
<version .mockito>4.11.0</version .mockito>
57
+ <jacocoStrict >true</jacocoStrict >
57
58
58
59
<!-- Can not use default, since group id != Java package name here -->
59
60
<osgi .export>com.fasterxml.jackson.databind.*;version=${project.version} </osgi .export>
215
216
<phase >validate</phase >
216
217
<goals ><goal >enforce</goal ></goals >
217
218
</execution >
219
+ <execution >
220
+ <id >enforce-jacoco-exec</id >
221
+ <phase >verify</phase >
222
+ <goals >
223
+ <goal >enforce</goal >
224
+ </goals >
225
+ <configuration >
226
+ <rules >
227
+ <requireFilesExist >
228
+ <files >
229
+ <file >${project.build.directory} /jacoco.exec</file >
230
+ </files >
231
+ </requireFilesExist >
232
+ </rules >
233
+ <fail >${jacocoStrict} </fail >
234
+ </configuration >
235
+ </execution >
218
236
</executions >
219
237
</plugin >
220
238
You can’t perform that action at this time.
0 commit comments