timefold-solver-spring-boot-autoconfigure
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ai.timefold.solver</groupId> <artifactId>timefold-solver-spring-boot-autoconfigure</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-spring-integration</artifactId> <version>1.21.0</version> </parent> <artifactId>timefold-solver-spring-boot-autoconfigure</artifactId> <name>Timefold Solver Spring Boot - Autoconfigure</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 Spring Boot autoconfigure. </description> <url>https://timefold.ai</url> <properties> <java.module.name>ai.timefold.solver.spring.boot.autoconfigure</java.module.name> </properties> <dependencies> <!-- Internal dependencies --> <dependency> <groupId>ai.timefold.solver</groupId> <artifactId>timefold-solver-core</artifactId> </dependency> <!-- Need this so we can @Autowire ConstraintVerifier --> <dependency> <groupId>ai.timefold.solver</groupId> <artifactId>timefold-solver-test</artifactId> <optional>true</optional> </dependency> <!-- Need this so we can @Autowire Benchmark --> <dependency> <groupId>ai.timefold.solver</groupId> <artifactId>timefold-solver-benchmark</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>ai.timefold.solver</groupId> <artifactId>timefold-solver-jackson</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.quarkus.gizmo</groupId> <artifactId>gizmo</artifactId> <scope>test</scope> </dependency> <!-- External dependencies --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> </dependency> <!-- Required for serializing the SolverConfig in native mode --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure-processor</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <optional>true</optional> </dependency> <!-- Testing --> <dependency> <groupId>ai.timefold.solver</groupId> <artifactId>timefold-solver-core</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <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.springframework</groupId> <artifactId>spring-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-test-autoconfigure</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</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> <ignoredUsedUndeclaredDependencies> <dependency>org.springframework.boot:spring-boot</dependency> <dependency>org.springframework:*</dependency> </ignoredUsedUndeclaredDependencies> <ignoredUnusedDeclaredDependencies> <dependency>org.springframework.boot:*</dependency> <dependency>ai.timefold.solver:timefold-solver-core</dependency> </ignoredUnusedDeclaredDependencies> </configuration> </plugin> </plugins> </build> </project>