Skip to content

Timefold Solver 0.9.39

Compare
Choose a tag to compare
@triceo triceo released this 15 Jun 11:14
· 497 commits to main since this release

Full Changelog: 0.9.38...0.9.39

How to use Timefold Solver

To see Timefold Solver in action, check out the quickstarts.
To develop with Timefold, the Solver jars are available in the central maven repository.

With Maven, just add the timefold-solver-core dependency in your pom.xml to get started:

<dependency>
    <groupId>ai.timefold.solver</groupId>
    <artifactId>timefold-solver-core</artifactId>
    <version>0.9.39</version>
</dependency>

Or better yet, import the timefold-solver-bom to avoid duplicating version numbers when adding other Timefold Solver dependencies later on:

<project>
    ...
    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>ai.timefold.solver</groupId>
                <artifactId>timefold-solver-bom</artifactId>
                <type>pom</type>
                <version>0.9.39</version>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>ai.timefold.solver</groupId>
            <artifactId>timefold-solver-core</artifactId>
        </dependency>
        <dependency>
             <groupId>ai.timefold.solver</groupId>
             <artifactId>timefold-solver-test</artifactId>
             <scope>test</scope>
         </dependency>
         ...
    </dependencies>
</project>

With Gradle, just add the timefold-solver-core dependency in your build.gradle to get started:

dependencies {
    implementation 'ai.timefold.solver:timefold-solver-core:0.9.39'
}

New Contributors