timefold-solver-jackson
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ai.timefold.solver</groupId> <artifactId>timefold-solver-jackson</artifactId> <version>1.21.0</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>ai.timefold.solver</groupId> <artifactId>timefold-solver-persistence-parent</artifactId> <version>1.21.0</version> </parent> <artifactId>timefold-solver-jackson</artifactId> <name>Timefold Solver Jackson</name> <description> Timefold solves planning problems. This lightweight, embeddable planning engine implements powerful and scalable algorithms to optimize business resource scheduling and planning. This module contains the Jackson integration. </description> <url>https://timefold.ai</url> <properties> <java.module.name>ai.timefold.solver.jackson</java.module.name> </properties> <dependencies> <!-- Internal dependencies --> <dependency> <groupId>ai.timefold.solver</groupId> <artifactId>timefold-solver-core</artifactId> </dependency> <dependency> <groupId>ai.timefold.solver</groupId> <artifactId>timefold-solver-persistence-common</artifactId> </dependency> <dependency> <groupId>ai.timefold.solver</groupId> <artifactId>timefold-solver-core</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <!-- External dependencies --> <!-- Logging --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <!-- XML and JSON --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <!-- Testing --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <!-- standardized nullness annotations --> <dependency> <groupId>org.jspecify</groupId> <artifactId>jspecify</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <configuration> <ignoredNonTestScopedDependencies> <!-- Uses Jackson annotations in Javadoc. --> <dependency>com.fasterxml.jackson.core:jackson-annotations:jar</dependency> </ignoredNonTestScopedDependencies> </configuration> </plugin> </plugins> </build> </project>