timefold-solver-quarkus-benchmark
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ai.timefold.solver</groupId> <artifactId>timefold-solver-quarkus-benchmark</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-benchmark-parent</artifactId> <version>1.16.0</version> </parent> <artifactId>timefold-solver-quarkus-benchmark</artifactId> <name>Timefold Solver Quarkus Benchmark - Runtime</name> <description>Benchmark an Timefold project to power tweak the solver configuration for speed and scalability.</description> <url>https://timefold.ai</url> <properties> <java.module.name>ai.timefold.solver.quarkus.benchmark</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-quarkus</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-awt</artifactId> </dependency> <dependency> <groupId>ai.timefold.solver</groupId> <artifactId>timefold-solver-benchmark</artifactId> <exclusions> <exclusion> <groupId>ai.timefold.solver</groupId> <artifactId>timefold-solver-core</artifactId> </exclusion> </exclusions> </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-benchmark</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>