jackson-datatype-eclipse-collections
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>tools.jackson.datatype</groupId>
<artifactId>jackson-datatype-eclipse-collections</artifactId>
<version>3.1.0-rc1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<!-- This module was also published with a richer model, Gradle metadata, -->
<!-- which should be used instead. Do not delete the following line which -->
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
<!-- that they should prefer consuming it instead. -->
<!-- do_not_remove: published-with-gradle-metadata -->
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>tools.jackson.datatype</groupId>
<artifactId>jackson-datatypes-collections</artifactId>
<version>3.1.0-rc1</version>
</parent>
<artifactId>jackson-datatype-eclipse-collections</artifactId>
<name>Jackson datatype: eclipse-collections</name>
<packaging>jar</packaging>
<description>Add-on datatype-support module for Jackson (https://github.com/FasterXML/jackson) that handles
eclipse-collections (https://www.eclipse.org/collections/) types
</description>
<url>https://github.com/FasterXML/jackson-datatypes-collections</url>
<contributors>
<contributor>
<name>Jonas Konrad</name>
<email>me@yawk.at</email>
</contributor>
</contributors>
<properties>
<version.eclipse-collections>11.1.0</version.eclipse-collections>
<!-- Generate PackageVersion.java into this directory. -->
<packageVersion.dir>tools/jackson/datatype/eclipsecollections</packageVersion.dir>
<packageVersion.package>${project.groupId}.eclipsecollections</packageVersion.package>
</properties>
<dependencies>
<dependency>
<groupId>tools.jackson.datatype</groupId>
<artifactId>jackson-datatype-primitive-collections-base</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.collections</groupId>
<artifactId>eclipse-collections</artifactId>
<version>${version.eclipse-collections}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
</plugin>
<!-- 29-Apr-2025, tatu: SBOM generation [JSTEP-14] -->
<plugin>
<groupId>org.cyclonedx</groupId>
<artifactId>cyclonedx-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>io.timeandspace</groupId>
<artifactId>jpsg-maven-plugin</artifactId>
<executions>
<execution>
<id>jpsg-main</id>
<phase>generate-sources</phase>
</execution>
<execution>
<id>jpsg-test</id>
<phase>generate-test-sources</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
</plugin>
<!-- 05-Jul-2020, tatu: Add generation of Gradle Module Metadata -->
<!-- 28-Feb-2025, jjohannes: Apply plugin last as it has to be the last of all 'package phase' plugins -->
<plugin>
<groupId>org.gradlex</groupId>
<artifactId>gradle-module-metadata-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>