timefold-solver-quarkus
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ai.timefold.solver</groupId> <artifactId>timefold-solver-quarkus</artifactId> <version>1.16.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-quarkus-parent</artifactId> <version>1.16.0</version> </parent> <artifactId>timefold-solver-quarkus</artifactId> <name>Timefold Solver Quarkus - Runtime</name> <description>Solve planning and scheduling with AI constraint optimization of vehicle routes, employee rosters, maintenance, tasks, lessons, conferences, ...</description> <url>https://timefold.ai</url> <properties> <java.module.name>ai.timefold.solver.quarkus</java.module.name> </properties> <dependencies> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-core</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-arc</artifactId> </dependency> <dependency> <groupId>ai.timefold.solver</groupId> <artifactId>timefold-solver-core</artifactId> </dependency> <!-- DEV console dependencies --> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-vertx-http</artifactId> <optional>true</optional> </dependency> <dependency> <!-- TODO Remove after gizmo is no longer needed at runtime https://github.com/TimefoldAI/timefold-solver/issues/133 --> <groupId>io.quarkus.gizmo</groupId> <artifactId>gizmo</artifactId> </dependency> <dependency> <groupId>org.graalvm.sdk</groupId> <artifactId>graal-sdk</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>io.quarkus</groupId> <artifactId>quarkus-extension-maven-plugin</artifactId> <executions> <execution> <goals> <goal>extension-descriptor</goal> </goals> <phase>compile</phase> <configuration> <capabilities> <provides>ai.timefold.solver.timefold-quarkus</provides> </capabilities> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <annotationProcessorPaths> <path> <groupId>io.quarkus</groupId> <artifactId>quarkus-extension-processor</artifactId> <version>${version.io.quarkus}</version> </path> </annotationProcessorPaths> </configuration> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <!-- TODO enable dependency check later. --> <id>analyze-only</id> <configuration> <failOnWarning>false</failOnWarning> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>