Skip to content

Commit 0dc4651

Browse files
authored
Update Gradle Nexus Publish Plugin endpoints for OSSRH migration (#360)
1 parent 4af9a98 commit 0dc4651

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.pubnub.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ sdks:
121121
license-url: https://www.apache.org/licenses/LICENSE-2.0.txt
122122
is-required: Required
123123
changelog:
124-
- date: 2025-07-03
124+
- date: 2025-07-15
125125
version: v10.5.3
126126
changes:
127127
- type: bug

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## v10.5.3
2-
July 03 2025
2+
July 15 2025
33

44
#### Fixed
55
- Internal fixes.

build.gradle.kts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@ plugins {
1010

1111
nexusPublishing {
1212
repositories {
13-
sonatype()
13+
sonatype {
14+
nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
15+
snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
16+
username.set(System.getenv("NEXUS_USERNAME"))
17+
password.set(System.getenv("NEXUS_PASSWORD"))
18+
}
1419
}
1520
}
1621

0 commit comments

Comments
 (0)