Skip to content

Commit f883178

Browse files
committed
test new publish
1 parent f471768 commit f883178

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

.ci/configure_signing.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@ signing.keyId=${signing_key: -8}
4646
signing.password=${signing_password}
4747
signing.secretKeyRingFile=${keyring_file}
4848
49-
sonatypeUsername=${maven_username}
50-
sonatypePassword=${maven_password}
49+
sonatypeUsername=test_username
50+
sonatypePassword=test_password
5151
EOF

build.gradle.kts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,21 @@ nexusPublishing {
2424
repositories {
2525
sonatype()
2626
}
27+
repositories {
28+
sonatype {
29+
nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
30+
snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
31+
username.set("test_username")
32+
password.set("test_password")
33+
}
34+
}
2735
}
2836

2937
repositories {
3038
mavenCentral()
3139
}
3240

33-
group = "co.elastic.clients"
41+
group = "co.elastic.release-test"
3442
description = "Maven central release of the official elasticsearch java client"
3543

3644
subprojects {
@@ -39,7 +47,7 @@ subprojects {
3947
}
4048

4149
allprojects {
42-
group = "co.elastic.clients"
50+
group = "co.elastic.release-test"
4351
// Release manager provides a $VERSION. If not present, it's a local or CI snapshot build.
4452
// also need to add the qualifier in case it's a staging build
4553
version = ""

0 commit comments

Comments
 (0)