-
Notifications
You must be signed in to change notification settings - Fork 29
/
pom.xml
74 lines (68 loc) · 2.31 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
<?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>org.optaplanner</groupId>
<artifactId>optaplanner-build-parent</artifactId>
<version>8.45.0-SNAPSHOT</version>
<relativePath/>
</parent>
<!-- IMPORTANT: the individual quickstarts have no parent pom. -->
<artifactId>optaplanner-quickstarts-parent</artifactId>
<packaging>pom</packaging>
<name>OptaPlanner Quickstarts</name>
<modules>
<module>hello-world</module>
<module>technology/java-spring-boot</module>
<module>technology/java-activemq-quarkus</module>
<module>technology/kotlin-quarkus</module>
<module>use-cases/school-timetabling</module>
<module>use-cases/facility-location</module>
<module>use-cases/maintenance-scheduling</module>
<module>use-cases/call-center</module>
<module>use-cases/vaccination-scheduling</module>
<module>use-cases/vehicle-routing</module>
<module>use-cases/order-picking</module>
<module>use-cases/employee-scheduling</module>
<module>build/quickstarts-showcase</module>
</modules>
<profiles>
<profile>
<id>default</id>
<activation>
<property>
<name>!productized</name>
</property>
</activation>
<modules>
<module>technology/kubernetes</module>
</modules>
</profile>
<profile>
<id>fullProfile</id>
<activation>
<property>
<name>full</name>
</property>
</activation>
<modules>
<module>build/optaplanner-distribution</module>
</modules>
</profile>
</profiles>
<repositories>
<!-- To get snapshots during development. Remove this in the "stable" branch (which doesn't use snapshots). -->
<repository>
<id>jboss-public-repository-group</id>
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
<releases>
<!-- Get releases only from Maven Central which is faster. -->
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</project>