-
Notifications
You must be signed in to change notification settings - Fork 87
/
pom.xml
186 lines (178 loc) · 6.26 KB
/
pom.xml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>ai.timefold.solver</groupId>
<artifactId>timefold-solver-parent</artifactId>
<packaging>pom</packaging>
<version>999-SNAPSHOT</version>
<name>Timefold Solver multiproject parent</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 is just the multiproject parent. The planning engine itself is in timefold-solver-core.
</description>
<url>https://timefold.ai</url>
<inceptionYear>2006</inceptionYear>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<version.javadoc.plugin>3.11.1</version.javadoc.plugin>
<version.rewrite.plugin>5.43.4</version.rewrite.plugin>
<version.source.plugin>3.3.1</version.source.plugin>
<version.resources.plugin>3.3.1</version.resources.plugin>
<sonar.moduleKey>${project.groupId}:${project.artifactId}</sonar.moduleKey>
<sonar.python.version>3.10,3.11,3.12</sonar.python.version>
<sonar.sources>.</sonar.sources>
<sonar.tests>.</sonar.tests>
<sonar.inclusions>src/main/**</sonar.inclusions>
<sonar.test.inclusions>src/test/**</sonar.test.inclusions>
<sonar.python.coverage.reportPaths>target/coverage.xml,python/jpyinterpreter/target/coverage.xml
</sonar.python.coverage.reportPaths>
</properties>
<scm>
<connection>scm:git:git@github.com:TimefoldAI/timefold-solver.git</connection>
<developerConnection>scm:git:git@github.com:TimefoldAI/timefold-solver.git</developerConnection>
<url>https://github.com/TimefoldAI/timefold-solver</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/TimefoldAI/solver/issues/</url>
</issueManagement>
<developers>
<developer>
<name>Timefold Community</name>
<organization>Timefold</organization>
<organizationUrl>https://timefold.ai</organizationUrl>
</developer>
</developers>
<modules>
<module>build/bom</module>
<module>build/ide-config</module>
<module>build/build-parent</module>
<module>core</module>
<module>test</module><!-- TODO move to core/test -->
<module>python</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${version.source.plugin}</version>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>${version.resources.plugin}</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${version.javadoc.plugin}</version>
<configuration>
<author>false</author>
<failOnError>true</failOnError>
<quiet>true</quiet>
<legacyMode>true</legacyMode>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>java-tools-and-integrations</id>
<activation>
<property>
<name>!python</name>
</property>
</activation>
<modules>
<module>persistence</module>
<module>benchmark</module><!-- TODO move to tools/benchmark -->
<module>spring-integration</module>
<module>quarkus-integration</module>
<module>tools</module>
<module>migration</module><!-- TODO move to tools/migration -->
</modules>
</profile>
<profile>
<id>fullProfile</id>
<activation>
<property>
<name>full</name>
</property>
</activation>
<modules>
<module>docs</module>
</modules>
<build>
<plugins>
<plugin>
<!--
All modules need this to be able to publish on Maven Central.
Can not go into build-parent, because build-parent required ide-config.
Therefore ide-config needs to depend on this parent and still publish sources.
-->
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin> <!-- Make sure the build fails-fast on Javadoc issues. -->
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>build-javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<!--
Migration to Timefold 9 involves upgrading to Quarkus 3, Spring Boot 3 and migrating to jakarta.* packages.
Timefold 8 remains compatible with Quarkus 2, Spring Boot 2 and javax.* packages.
Both Timefold 8 and 9 are functionally equal and will be released simultaneously.
-->
<id>8-to-9-migration</id>
<activation>
<property>
<name>migration</name>
</property>
</activation>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.openrewrite.maven</groupId>
<artifactId>rewrite-maven-plugin</artifactId>
<version>${version.rewrite.plugin}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
</profiles>
</project>