One of standard Jackson Collection type Datatype modules. Supports JSON serialization and deserialization of Eclipse Collections data types.
Licensed under Apache License 2.0
To use module on Maven-based projects, use following dependency:
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-eclipse-collections</artifactId>
<version>2.14.0</version>
</dependency>
(or whatever version is most up-to-date at the moment)
Like all standard Jackson modules (libraries that implement Module interface), registration is done as follows:
ObjectMapper mapper = new ObjectMapper()
.registerModule(new EclipseCollectionsModule());
after which functionality is available for all normal Jackson operations.