jackson-datatype-jdk8
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.jwebmp.jackson.datatype</groupId> <artifactId>jackson-datatype-jdk8</artifactId> <version>0.66.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.jwebmp.jackson</groupId> <artifactId>jackson-parent</artifactId> <version>0.66.0.1</version> </parent> <groupId>com.jwebmp.jackson.datatype</groupId> <artifactId>jackson-datatype-jdk8</artifactId> <name>Jackson datatype: jdk8</name> <description>Add-on module for Jackson (http://jackson.codehaus.org) to support JDK 8 data types. </description> <properties> <!-- Generate PackageVersion.java into this directory. --> <packageVersion.dir>com/fasterxml/jackson/datatype/jdk8</packageVersion.dir> <packageVersion.package>${project.groupId}.jdk8</packageVersion.package> </properties> <dependencies> <dependency> <groupId>com.jwebmp.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <version>${maven.surefire.version}</version> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>com/fasterxml/jackson/failing/*.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>jdk8</id> <build> <plugins> <plugin> <groupId>org.moditect</groupId> <artifactId>moditect-maven-plugin</artifactId> <executions> <execution> <id>add-module-infos</id> <phase>package</phase> <goals> <goal>add-module-info</goal> </goals> <configuration> <overwriteExistingFiles>true</overwriteExistingFiles> <module> <moduleInfoFile> src/jre11/java/module-info.java </moduleInfoFile> </module> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>