-
Notifications
You must be signed in to change notification settings - Fork 947
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kie-issues#1123:unify maven projects configuration
- Loading branch information
jstastny-cz
committed
Apr 26, 2024
1 parent
8c2fb1e
commit f41a24f
Showing
1 changed file
with
20 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ | |
<parent> | ||
<groupId>org.apache</groupId> | ||
<artifactId>apache</artifactId> | ||
<version>30</version> | ||
<version>32</version> | ||
</parent> | ||
|
||
<groupId>org.optaplanner</groupId> | ||
|
@@ -64,50 +64,6 @@ | |
<version.maven.artifact.plugin>3.4.1</version.maven.artifact.plugin> | ||
</properties> | ||
|
||
<distributionManagement> | ||
<repository> | ||
<id>apache-release-staging-repository</id> | ||
<name>Apache Release Staging Repository</name> | ||
<url>https://repository.apache.org/service/local/staging/deploy/maven2</url> | ||
</repository> | ||
<snapshotRepository> | ||
<id>apache-snapshots-repository</id> | ||
<name>Apache Snapshot Repository</name> | ||
<url>https://repository.apache.org/content/repositories/snapshots/</url> | ||
</snapshotRepository> | ||
</distributionManagement> | ||
|
||
<repositories> | ||
<repository> | ||
<id>apache-public-repository-group</id> | ||
<url>https://repository.apache.org/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> | ||
<pluginRepositories> | ||
<pluginRepository> | ||
<id>apache-public-repository-group</id> | ||
<name>Apache Public Repository Group</name> | ||
<url>https://repository.apache.org/content/groups/public/</url> | ||
<layout>default</layout> | ||
<releases> | ||
<!-- Only get SNAPSHOTS from Apache 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> | ||
</pluginRepository> | ||
</pluginRepositories> | ||
|
||
<scm> | ||
<connection>scm:git:[email protected]:apache/incubator-kie-optaplanner.git</connection> | ||
<developerConnection>scm:git:[email protected]:apache/incubator-kie-optaplanner.git</developerConnection> | ||
|
@@ -119,28 +75,34 @@ | |
</issueManagement> | ||
<developers> | ||
<developer> | ||
<name>All developers are listed on the team website</name> | ||
<url>https://www.optaplanner.org/community/team.html</url> | ||
<name>The Apache KIE Team</name> | ||
<email>[email protected]</email> | ||
<url>https://kie.apache.org</url> | ||
<organization>Apache Software Foundation</organization> | ||
<organizationUrl>http://apache.org/</organizationUrl> | ||
</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>Development mailing list</name> | ||
<post>[email protected]</post> | ||
<name>Development List</name> | ||
<subscribe>[email protected]</subscribe> | ||
<unsubscribe>[email protected]</unsubscribe> | ||
<post>[email protected]</post> | ||
<archive>https://lists.apache.org/[email protected]</archive> | ||
</mailingList> | ||
<mailingList> | ||
<name>setup</name> | ||
<subscribe>https://groups.google.com/forum/#!forum/optaplanner-dev</subscribe> | ||
<unsubscribe>https://groups.google.com/forum/#!forum/optaplanner-dev</unsubscribe> | ||
<name>User List</name> | ||
<subscribe>[email protected]</subscribe> | ||
<unsubscribe>[email protected]</unsubscribe> | ||
<post>[email protected]</post> | ||
<archive>https://lists.apache.org/[email protected]</archive> | ||
</mailingList> | ||
<mailingList> | ||
<name>Commits List</name> | ||
<subscribe>[email protected]</subscribe> | ||
<unsubscribe>[email protected]</unsubscribe> | ||
<post>[email protected]</post> | ||
<archive>https://lists.apache.org/[email protected]</archive> | ||
</mailingList> | ||
</mailingLists> | ||
|
||
|