Skip to content

Commit 4c3d806

Browse files
Adapting to new sonatype url
1 parent 9906465 commit 4c3d806

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/readthedocs/gettingstarted.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ On `Maven central <https://search.maven.org/artifact/com.github.ie3-institute/Po
3030
3131
Snapshot releases
3232
=================
33-
Available on `OSS Sonatype <https://oss.sonatype.org/>`_.
33+
Available on `OSS Sonatype <https://s01.oss.sonatype.org/>`_.
3434
Add the correct repository:
3535

3636
.. code-block:: xml
3737
3838
<repositories>
39-
<repository>http://oss.sonatype.org/content/repositories/snapshots</repository>
39+
<repository>https://s01.oss.sonatype.org/content/repositories/snapshots</repository>
4040
</repositories>
4141
4242
and add the dependency:

gradle/scripts/mavenCentralPublish.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ if (project.hasProperty('user') && project.hasProperty('password') && project.ha
9191
}
9292
repositories {
9393
maven {
94-
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
95-
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
94+
def releasesRepoUrl = "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/"
95+
def snapshotsRepoUrl = "https://s01.oss.sonatype.org/content/repositories/snapshots/"
9696
url = versionString.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
9797
credentials {
9898
username project.getProperty('user')

0 commit comments

Comments
 (0)