23 Star 106 Fork 64

白鹭fly / OptaPlanner ERP

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 4.34 KB
一键复制 编辑 原始数据 按行查看 历史
白鹭fly 提交于 2020-08-02 11:28 . 成功版本
<?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>
<properties>
<!-- override the default GroupId:ArtifactId to map both master branch and 7.x branches to the same SonarCloud project -->
<sonar.projectKey>org.optaplanner:optaplanner</sonar.projectKey>
<sonar.moduleKey>${project.groupId}:${project.artifactId}</sonar.moduleKey>
</properties>
<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:git@github.com:kiegroup/optaplanner.git</connection>
<developerConnection>scm:git:git@github.com: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>
Java
1
https://gitee.com/baijigan/OptaPlanner.git
git@gitee.com:baijigan/OptaPlanner.git
baijigan
OptaPlanner
OptaPlanner ERP
master

搜索帮助