| <?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.kie</groupId> |
| <artifactId>kie-parent-with-dependencies</artifactId> |
| <version>6.0.3-SNAPSHOT</version> |
| <!-- relativePath causes out-of-date problems on hudson slaves --> |
| <!--<relativePath>../droolsjbpm-build-bootstrap/pom.xml</relativePath>--> |
| </parent> |
| |
| <groupId>org.optaplanner</groupId> |
| <artifactId>optaplanner</artifactId> |
| <packaging>pom</packaging> |
| |
| <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>http://www.optaplanner.org</url> |
| <inceptionYear>2006</inceptionYear> |
| |
| <repositories> |
| <!-- Bootstrap repository to locate the parent pom when the parent pom has not been build locally. --> |
| <repository> |
| <id>jboss-public-repository-group</id> |
| <name>JBoss Public Repository Group</name> |
| <url>http://repository.jboss.org/nexus/content/groups/public/</url> |
| <layout>default</layout> |
| <releases> |
| <enabled>true</enabled> |
| <updatePolicy>never</updatePolicy> |
| </releases> |
| <snapshots> |
| <enabled>true</enabled> |
| <updatePolicy>daily</updatePolicy> |
| </snapshots> |
| </repository> |
| </repositories> |
| |
| <scm> |
| <connection>scm:git:git@github.com:droolsjbpm/optaplanner.git</connection> |
| <developerConnection>scm:git:git@github.com:droolsjbpm/optaplanner.git</developerConnection> |
| <url>https://github.com/droolsjbpm/optaplanner</url> |
| </scm> |
| <issueManagement> |
| <system>jira</system> |
| <url>https://issues.jboss.org/browse/PLANNER</url> |
| </issueManagement> |
| |
| <modules> |
| <module>optaplanner-core</module> |
| <module>optaplanner-benchmark</module> |
| <module>optaplanner-examples</module> |
| <module>optaplanner-webexamples</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> |
| </profiles> |
| |
| </project> |