-
Notifications
You must be signed in to change notification settings - Fork 957
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[kie-issues#628] Change JBoss Nexus to Apache Nexus. (#3001)
* [kie-issues#628] Change JBoss Nexus to Apache Nexus. * [kie-issues#628] Remove JavaDoc workaround.
- Loading branch information
Showing
3 changed files
with
26 additions
and
22 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
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
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 |
---|---|---|
|
@@ -62,21 +62,21 @@ | |
|
||
<distributionManagement> | ||
<repository> | ||
<id>jboss-releases-repository</id> | ||
<name>JBoss Releases Repository</name> | ||
<url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</url> | ||
<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>jboss-snapshots-repository</id> | ||
<name>JBoss Snapshot Repository</name> | ||
<url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url> | ||
<id>apache-snapshots-repository</id> | ||
<name>Apache Snapshot Repository</name> | ||
<url>https://repository.apache.org/content/repositories/snapshots/</url> | ||
</snapshotRepository> | ||
</distributionManagement> | ||
|
||
<repositories> | ||
<repository> | ||
<id>jboss-public-repository-group</id> | ||
<url>https://repository.jboss.org/nexus/content/groups/public/</url> | ||
<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> | ||
|
@@ -88,12 +88,12 @@ | |
</repositories> | ||
<pluginRepositories> | ||
<pluginRepository> | ||
<id>jboss-public-repository-group</id> | ||
<name>JBoss Public Repository Group</name> | ||
<url>https://repository.jboss.org/nexus/content/groups/public/</url> | ||
<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 JBoss repository, | ||
<!-- Only get SNAPSHOTS from Apache repository, | ||
so it tries to get releases first (and only) from Maven Central. --> | ||
<enabled>false</enabled> | ||
</releases> | ||
|
@@ -105,13 +105,13 @@ | |
</pluginRepositories> | ||
|
||
<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> | ||
<connection>scm:git:[email protected]:apache/incubator-kie-optaplanner.git</connection> | ||
<developerConnection>scm:git:[email protected]:apache/incubator-kie-optaplanner.git</developerConnection> | ||
<url>https://github.com/apache/incubator-kie-optaplanner</url> | ||
</scm> | ||
<issueManagement> | ||
<system>jira</system> | ||
<url>https://issues.redhat.com/browse/PLANNER</url> | ||
<system>GitHub Issues</system> | ||
<url>https://github.com/apache/incubator-kie-issues/issues</url> | ||
</issueManagement> | ||
<developers> | ||
<developer> | ||
|
@@ -126,6 +126,13 @@ | |
</contributor> | ||
</contributors> | ||
<mailingLists> | ||
<mailingList> | ||
<name>Development mailing list</name> | ||
<post>[email protected]</post> | ||
<subscribe>[email protected]</subscribe> | ||
<unsubscribe>[email protected]</unsubscribe> | ||
<archive>https://lists.apache.org/[email protected]</archive> | ||
</mailingList> | ||
<mailingList> | ||
<name>setup</name> | ||
<subscribe>https://groups.google.com/forum/#!forum/optaplanner-dev</subscribe> | ||
|