forked from apache/incubator-kie-optaplanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
123 lines (114 loc) · 4.04 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
<?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>
<parent>
<groupId>org.jboss</groupId>
<artifactId>jboss-parent</artifactId>
<version>36</version>
<relativePath/>
</parent>
<groupId>org.optaplanner</groupId>
<artifactId>optaplanner-parent</artifactId>
<packaging>pom</packaging>
<version>8.0.0-SNAPSHOT</version>
<name>OptaPlanner multiproject parent</name>
<description>
OptaPlanner 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 optaplanner-core.
</description>
<url>https://www.optaplanner.org</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>
<repositories>
<repository>
<id>jboss-public-repository-group</id>
<name>JBoss Public Repository Group</name>
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
<layout>default</layout>
<releases>
<!-- Only get SNAPSHOTS from JBoss repository,
so it tries to get releases first (and only) from Maven Central. -->
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</snapshots>
</repository>
</repositories>
<scm>
<connection>scm:git:[email protected]:kiegroup/optaplanner.git</connection>
<developerConnection>scm:git:[email protected]:kiegroup/optaplanner.git</developerConnection>
<url>https://github.com/kiegroup/optaplanner</url>
</scm>
<issueManagement>
<system>jira</system>
<url>https://issues.redhat.com/browse/PLANNER</url>
</issueManagement>
<developers>
<developer>
<name>All developers are listed on the team website</name>
<url>https://www.optaplanner.org/community/team.html</url>
</developer>
</developers>
<contributors>
<contributor>
<name>All contributors are listed on the team website</name>
<url>https://www.optaplanner.org/community/team.html</url>
</contributor>
</contributors>
<mailingLists>
<mailingList>
<name>setup</name>
<subscribe>https://groups.google.com/forum/#!forum/optaplanner-dev</subscribe>
<unsubscribe>https://groups.google.com/forum/#!forum/optaplanner-dev</unsubscribe>
</mailingList>
</mailingLists>
<modules>
<module>optaplanner-bom</module>
<module>optaplanner-build-parent</module>
<module>optaplanner-core</module>
<module>optaplanner-persistence</module>
<module>optaplanner-benchmark</module>
<module>optaplanner-test</module>
<module>optaplanner-integration</module><!-- TODO rename to optaplanner-spring-integration-->
<module>optaplanner-quarkus-integration</module>
<module>optaplanner-examples</module>
</modules>
<profiles>
<profile>
<id>fullProfile</id>
<activation>
<property>
<name>full</name>
</property>
</activation>
<modules>
<module>optaplanner-docs</module>
<module>optaplanner-distribution</module>
</modules>
</profile>
<profile>
<id>quickstartsProfile</id>
<activation>
<property>
<!-- TODO Temporarily(?) exclude quickstarts from nightly/release community/product builds -->
<!-- Don't release the quickstart artifacts in a Maven repo such as Maven Central -->
<name>quickstarts</name>
</property>
</activation>
<modules>
<module>optaplanner-quickstarts</module>
</modules>
</profile>
</profiles>
</project>