File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/org/embulk/util/config Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -330,7 +330,7 @@ private static void assertJacksonCoreVersion() {
330
330
331
331
final int minor = com .fasterxml .jackson .core .json .PackageVersion .VERSION .getMinorVersion ();
332
332
if (minor < 14 || (minor == 15 && com .fasterxml .jackson .core .json .PackageVersion .VERSION .getPatchLevel () <= 2 )) {
333
- throw new UnsupportedOperationException ("embulk-util-config is not used with Jackson 2.15.3 or later." );
333
+ throw new UnsupportedOperationException ("embulk-util-config is not used with Jackson (jackson-core) 2.15.3 or later." );
334
334
}
335
335
}
336
336
@@ -341,7 +341,7 @@ private static void assertJacksonDataBindVersion() {
341
341
342
342
final int minor = com .fasterxml .jackson .databind .cfg .PackageVersion .VERSION .getMinorVersion ();
343
343
if (minor < 14 || (minor == 15 && com .fasterxml .jackson .databind .cfg .PackageVersion .VERSION .getPatchLevel () <= 2 )) {
344
- throw new UnsupportedOperationException ("embulk-util-config is not used with Jackson 2.15.3 or later." );
344
+ throw new UnsupportedOperationException ("embulk-util-config is not used with Jackson (jackson-databind) 2.15.3 or later." );
345
345
}
346
346
}
347
347
@@ -352,7 +352,7 @@ private static void assertJacksonDataTypeJdk8Version() {
352
352
353
353
final int minor = com .fasterxml .jackson .datatype .jdk8 .PackageVersion .VERSION .getMinorVersion ();
354
354
if (minor < 14 || (minor == 15 && com .fasterxml .jackson .datatype .jdk8 .PackageVersion .VERSION .getPatchLevel () <= 2 )) {
355
- throw new UnsupportedOperationException ("embulk-util-config is not used with Jackson 2.15.3 or later." );
355
+ throw new UnsupportedOperationException ("embulk-util-config is not used with Jackson (jackson-datatype-jdk8) 2.15.3 or later." );
356
356
}
357
357
}
358
358
You can’t perform that action at this time.
0 commit comments