Skip to content

Commit db9fb7f

Browse files
authored
Merge branch '2.19' into unknown-with-creator-default-value
2 parents 175f08f + 39ac2b6 commit db9fb7f

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ usually a Jackson module.
599599
`master` branch is for developing the next major Jackson version -- 3.0 -- but there
600600
are active maintenance branches in which much of development happens:
601601

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)
603603
* `2.18` is the current stable minor 2.x version
604604
* `2.17` is for selected backported fixes
605605

pom.xml

+18
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454

5555
<version.bytebuddy>1.15.10</version.bytebuddy>
5656
<version.mockito>4.11.0</version.mockito>
57+
<jacocoStrict>true</jacocoStrict>
5758

5859
<!-- Can not use default, since group id != Java package name here -->
5960
<osgi.export>com.fasterxml.jackson.databind.*;version=${project.version}</osgi.export>
@@ -215,6 +216,23 @@
215216
<phase>validate</phase>
216217
<goals><goal>enforce</goal></goals>
217218
</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>
218236
</executions>
219237
</plugin>
220238

0 commit comments

Comments
 (0)