Skip to content

Commit 655713e

Browse files
committed
fix for 697
1 parent 87845d6 commit 655713e

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ nitriteVersion=3.4.4-SNAPSHOT
2929
# nitrite dependency
3030
asciidoctorVersion=1.5.6
3131
asciidoctorPluginVersion=1.5.6
32-
awaitilityVersion=4.0.2
33-
commonsLang3Version=3.9
32+
awaitilityVersion=4.2.0
33+
commonsLang3Version=3.12.0
3434
dokkaVersion=0.9.16
35-
errorProneVersion=2.0.17
35+
errorProneVersion=2.11.0
3636
errorPronePluginVersion=0.0.8
3737
h2Version=1.4.200
3838
jacksonVersion=2.10.1
@@ -43,7 +43,7 @@ jodaTimeVersion=2.9.9
4343
jongoVersion=1.4.0
4444
junitVersion=4.12
4545
kotlinVersion=1.3.61
46-
log4j2Version=2.13.0
46+
log4j2Version=2.17.2
4747
lombokVersion=1.18.10
4848
lombokPluginVersion=3.2.0
4949
luceneVersion=7.2.1

nitrite/src/main/java/org/dizitart/no2/Index.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
@EqualsAndHashCode
4141
@ToString
4242
public class Index implements Comparable<Index>, Serializable {
43+
private static final long serialVersionUID = 6727331412761083161L;
4344

4445
/**
4546
* Specifies the type of the index.

nitrite/src/main/java/org/dizitart/no2/internals/IndexMetaService.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ private NitriteMap<String, IndexMeta> getIndexMetadata() {
155155
@EqualsAndHashCode
156156
@ToString
157157
private static class IndexMeta implements Serializable {
158+
private static final long serialVersionUID = 1647971212L;
158159
private Index index;
159160
private String indexMap;
160161
private AtomicBoolean isDirty;

0 commit comments

Comments
 (0)