Timefold is hiring! Visit our job page to see the 6 open positions.
June 15th, 2023

Timefold Solver 0.9.39

Full Changelog: https://github.com/TimefoldAI/timefold-solver/compare/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

  • @aalmiray made their first contribution in https://github.com/TimefoldAI/timefold-solver/pull/13
  • @ge0ffrey made their first contribution in https://github.com/TimefoldAI/timefold-solver/pull/18
  • @mcimbora made their first contribution in https://github.com/TimefoldAI/timefold-solver/pull/23
Back to overview