JodaTime - NoSuchMethodError: DateTimeFormatterBuilder.appendFixedDecimal

1.3k Views Asked by At

While executing below piece of code

import com.github.fge.jsonschema.main.JsonSchemaFactory;

JsonSchemaFactory factory = JsonSchemaFactory.byDefault();

I am getting below error.

]] Root cause of ServletException.
java.lang.NoSuchMethodError: org.joda.time.format.DateTimeFormatterBuilder.appendFixedDecimal(Lorg/joda/time/
DateTimeFieldType;I)Lorg/joda/time/format/DateTimeFormatterBuilder;
        at com.github.fge.jsonschema.format.common.DateTimeAttribute.<clinit>(DateTimeAttribute.java:56)
        at com.github.fge.jsonschema.library.format.CommonFormatAttributesDictionary.<clinit>(CommonFormatAttributesDictionary.java:52)
        at com.github.fge.jsonschema.library.format.DraftV3FormatAttributesDictionary.<clinit>(DraftV3FormatAttributesDictionary.java:47)
        at com.github.fge.jsonschema.library.DraftV3Library.<clinit>(DraftV3Library.java:32)
        at com.github.fge.jsonschema.cfg.ValidationConfigurationBuilder.<clinit>(ValidationConfigurationBuilder.java:63)
        Truncated. see log file for complete stacktrace

Used maven dependency is as below.

    <dependency>
        <groupId>com.github.fge</groupId>
        <artifactId>json-schema-validator</artifactId>
        <version>2.2.6</version>
    </dependency>

Can someone please help me out to figure out what could be wrong?

0

There are 0 best solutions below