from [Central Repository Changelog](https://central.sonatype.org/changelog),Maven Central's staging server is from [oss.sonatype.org](https://oss.sonatype.org) to [s01.oss.sonatype.org](https://s01.oss.sonatype.org), so in ```getReleaseRepositoryUrl``` and ```getSnapshotRepositoryUrl``` method default url should update string ~~oss.sonatype.org~~ -> <b>s01.oss.sonatype.org</b> ```java def getReleaseRepositoryUrl() { return hasProperty('RELEASE_REPOSITORY_URL') ? RELEASE_REPOSITORY_URL : "https://oss.sonatype.org/service/local/staging/deploy/maven2/" } def getSnapshotRepositoryUrl() { return hasProperty('SNAPSHOT_REPOSITORY_URL') ? SNAPSHOT_REPOSITORY_URL : "https://oss.sonatype.org/content/repositories/snapshots/" } ```