jackson-datatype-datetime
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.jwebmp.jpms.jackson.datatype</groupId>
<artifactId>jackson-datatype-datetime</artifactId>
<version>0.68.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.jpms.jackson.module</groupId>
<artifactId>jackson-modules-java8</artifactId>
<version>0.68.0.1</version>
</parent>
<groupId>com.jwebmp.jpms.jackson.datatype</groupId>
<artifactId>jackson-datatype-datetime</artifactId>
<name>Jackson datatype: JSR310</name>
<description>Add-on module to support JSR-310 (Java 8 Date & Time API) data types.</description>
<developers>
<developer>
<id>beamerblvd</id>
<name>Nick Williams</name>
<email>nicholas@nicholaswilliams.net</email>
<timezone>-6</timezone>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>com.jwebmp.jpms.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
</dependencies>
<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>