<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/maven-v4_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>com.fasterxml.jackson.jr</groupId>
        <artifactId>jackson-jr-parent</artifactId>
        <version>2.19.2</version>
    </parent>

    <artifactId>jackson-jr-extension-javatime</artifactId>
    <name>Jackson-jr: Java.time extension</name>
    <packaging>bundle</packaging>
    <description>Jackson-jr extension that adds support for Java 8 Date/Time value types such as `java.time.LocalDateTime`</description>
    <url>https://github.com/FasterXML/jackson-jr</url>

    <licenses>
        <license>
            <name>The Apache Software License, Version 2.0</name>
            <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <properties>
        <!-- Looks like we need to be bit careful on OSGi exports, to avoid
            accidentally double-exporting jr-objects types
          -->
        <osgi.export>${project.groupId}.extension.javatime;version=${project.version}</osgi.export>

        <!-- for Reproducible Builds -->
        <project.build.outputTimestamp>2025-07-18T17:49:23Z</project.build.outputTimestamp>
    </properties>

    <dependencies>
        <dependency>
            <groupId>com.fasterxml.jackson.jr</groupId>
            <artifactId>jackson-jr-objects</artifactId>
            <version>${project.version}</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <!-- 11-Mar-2019, tatu: Add basic JDK8-includable module-info, generated by Moditect -->
            <plugin>
                <groupId>org.moditect</groupId>
                <artifactId>moditect-maven-plugin</artifactId>
            </plugin>
            <!-- 05-Jul-2020, tatu: Add generation of Gradle Module Metadata -->
            <plugin>
                <groupId>org.gradlex</groupId>
                <artifactId>gradle-module-metadata-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>
