| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| ~ Licensed to the Apache Software Foundation (ASF) under one |
| ~ or more contributor license agreements. See the NOTICE file |
| ~ distributed with this work for additional information |
| ~ regarding copyright ownership. The ASF licenses this file |
| ~ to you under the Apache License, Version 2.0 (the |
| ~ "License"); you may not use this file except in compliance |
| ~ with the License. You may obtain a copy of the License at |
| ~ |
| ~ http://www.apache.org/licenses/LICENSE-2.0 |
| ~ |
| ~ Unless required by applicable law or agreed to in writing, |
| ~ software distributed under the License is distributed on an |
| ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| ~ KIND, either express or implied. See the License for the |
| ~ specific language governing permissions and limitations |
| ~ under the License. |
| --> |
| |
| <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.apache</groupId> |
| <artifactId>apache</artifactId> |
| <version>32</version> |
| </parent> |
| |
| <groupId>org.optaplanner</groupId> |
| <artifactId>optaplanner-parent</artifactId> |
| <packaging>pom</packaging> |
| <version>999-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> |
| <organization> |
| <name>The Apache Software Foundation</name> |
| <url>https://apache.org/</url> |
| </organization> |
| <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> |
| |
| <scm> |
| <connection>scm:git:https://github.com/apache/incubator-kie-optaplanner.git</connection> |
| <developerConnection>scm:git:https://github.com/apache/incubator-kie-optaplanner.git</developerConnection> |
| <url>https://github.com/apache/incubator-kie-optaplanner</url> |
| </scm> |
| <issueManagement> |
| <system>GitHub Issues</system> |
| <url>https://github.com/apache/incubator-kie-issues/issues</url> |
| </issueManagement> |
| <developers> |
| <developer> |
| <name>The Apache KIE Team</name> |
| <email>dev@kie.apache.org</email> |
| <url>https://kie.apache.org</url> |
| <organization>Apache Software Foundation</organization> |
| <organizationUrl>http://apache.org/</organizationUrl> |
| </developer> |
| </developers> |
| <mailingLists> |
| <mailingList> |
| <name>Development List</name> |
| <subscribe>dev-subscribe@kie.apache.org</subscribe> |
| <unsubscribe>dev-unsubscribe@kie.apache.org</unsubscribe> |
| <post>dev@kie.apache.org</post> |
| <archive>https://lists.apache.org/list.html?dev@kie.apache.org</archive> |
| </mailingList> |
| <mailingList> |
| <name>User List</name> |
| <subscribe>users-subscribe@kie.apache.org</subscribe> |
| <unsubscribe>users-unsubscribe@kie.apache.org</unsubscribe> |
| <post>users@kie.apache.org</post> |
| <archive>https://lists.apache.org/list.html?users@kie.apache.org</archive> |
| </mailingList> |
| <mailingList> |
| <name>Commits List</name> |
| <subscribe>commits-subscribe@kie.apache.org</subscribe> |
| <unsubscribe>commits-unsubscribe@kie.apache.org</unsubscribe> |
| <post>commits@kie.apache.org</post> |
| <archive>https://lists.apache.org/list.html?commits@kie.apache.org</archive> |
| </mailingList> |
| </mailingLists> |
| |
| <properties> |
| <!-- TODO: Evaluate if this override is still needed. --> |
| <!-- The property sonar.projectKey is defined in the CI in order not to collide with optawebs. It overrides |
| the default GroupId:ArtifactId to map both main branch and 7.x branches to the same SonarCloud project. |
| As the sonar.moduleKey inherits the value of sonar.projectKey by default, we have to override it too. --> |
| <sonar.moduleKey>${project.groupId}:${project.artifactId}</sonar.moduleKey> |
| <version.rewrite.plugin>4.45.0</version.rewrite.plugin> |
| |
| <!-- reproducible build --> |
| <project.build.outputTimestamp>2024-01-12T00:00:00Z</project.build.outputTimestamp> |
| <version.maven.artifact.plugin>3.4.1</version.maven.artifact.plugin> |
| </properties> |
| |
| <modules> |
| <module>build/optaplanner-bom</module> |
| <module>build/optaplanner-ide-config</module> |
| <module>build/optaplanner-build-parent</module> |
| <module>core</module> |
| <module>optaplanner-persistence</module> |
| <module>optaplanner-benchmark</module> |
| <module>optaplanner-test</module> |
| <module>optaplanner-spring-integration</module> |
| <module>optaplanner-quarkus-integration</module> |
| <module>optaplanner-examples</module> |
| </modules> |
| |
| <!-- reproducible build --> |
| <build> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-artifact-plugin</artifactId> |
| <version>${version.maven.artifact.plugin}</version> |
| <configuration> |
| <outputTimestamp>${project.build.outputTimestamp}</outputTimestamp> |
| </configuration> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| |
| <profiles> |
| <profile> |
| <id>fullProfile</id> |
| <activation> |
| <property> |
| <name>full</name> |
| </property> |
| </activation> |
| <modules> |
| <module>optaplanner-docs</module> |
| <module>build/optaplanner-javadoc</module> |
| <module>build/optaplanner-distribution-internal</module> |
| </modules> |
| </profile> |
| <profile> |
| <id>default</id> |
| <activation> |
| <property> |
| <name>!productized</name> |
| </property> |
| </activation> |
| <modules> |
| <module>optaplanner-operator</module> |
| </modules> |
| </profile> |
| </profiles> |
| </project> |