This repository was archived by the owner on Oct 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpom.xml
More file actions
50 lines (43 loc) · 1.67 KB
/
pom.xml
File metadata and controls
50 lines (43 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>ai.timefold.solver</groupId>
<artifactId>timefold-solver-build-parent</artifactId>
<version>1.24.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>timefold-solver-python-parent</artifactId>
<packaging>pom</packaging>
<name>Timefold Solver for Python</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 Python implementation of the solver.
</description>
<url>https://solver.timefold.ai</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<version.apache.collections4>4.5.0</version.apache.collections4>
<maven.compiler.release>17</maven.compiler.release>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>ai.timefold.solver</groupId>
<artifactId>jpyinterpreter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>${version.apache.collections4}</version>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>jpyinterpreter</module>
<module>python-core</module>
</modules>
</project>