Skip to content

Commit 0fe97e0

Browse files
committed
Add project.build.outputTimestamp for Reproducible Builds
1 parent 45c1034 commit 0fe97e0

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

pom.xml

+3
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@
5454
<packageVersion.package>com.fasterxml.jackson.databind.cfg</packageVersion.package>
5555

5656
<version.powermock>2.0.9</version.powermock>
57+
58+
<!-- for Reproducible Builds -->
59+
<project.build.outputTimestamp>2022-09-18T00:00:00Z</project.build.outputTimestamp>
5760
</properties>
5861

5962
<dependencies>

src/main/java/com/fasterxml/jackson/databind/SerializationFeature.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ public enum SerializationFeature implements ConfigFeature
268268
* @since 2.5
269269
*/
270270
WRITE_DURATIONS_AS_TIMESTAMPS(true),
271-
271+
272272
/**
273273
* Feature that determines how type <code>char[]</code> is serialized:
274274
* when enabled, will be serialized as an explict JSON array (with
@@ -322,7 +322,7 @@ public enum SerializationFeature implements ConfigFeature
322322
* @since 2.10
323323
*/
324324
WRITE_ENUM_KEYS_USING_INDEX(false),
325-
325+
326326
/**
327327
* Feature that determines whether Map entries with null values are
328328
* to be serialized (true) or not (false).

0 commit comments

Comments
 (0)