File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,6 @@ signing.keyId=${signing_key: -8}
46
46
signing.password=${signing_password}
47
47
signing.secretKeyRingFile=${keyring_file}
48
48
49
- sonatypeUsername=${maven_username}
50
- sonatypePassword=${maven_password}
49
+ sonatypeUsername=test_username
50
+ sonatypePassword=test_password
51
51
EOF
Original file line number Diff line number Diff line change @@ -24,13 +24,21 @@ nexusPublishing {
24
24
repositories {
25
25
sonatype()
26
26
}
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
+ }
27
35
}
28
36
29
37
repositories {
30
38
mavenCentral()
31
39
}
32
40
33
- group = " co.elastic.clients "
41
+ group = " co.elastic.release-test "
34
42
description = " Maven central release of the official elasticsearch java client"
35
43
36
44
subprojects {
@@ -39,7 +47,7 @@ subprojects {
39
47
}
40
48
41
49
allprojects {
42
- group = " co.elastic.clients "
50
+ group = " co.elastic.release-test "
43
51
// Release manager provides a $VERSION. If not present, it's a local or CI snapshot build.
44
52
// also need to add the qualifier in case it's a staging build
45
53
version = " "
You can’t perform that action at this time.
0 commit comments