8000 fix but disable publishing · chakra-coder/rsocket-java@64309d1 · GitHub
[go: up one dir, main page]

Skip to content

Commit 64309d1

Browse files
committed
fix but disable publishing
1 parent 95b0bbe commit 64309d1

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

build.gradle

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -127,22 +127,28 @@ subprojects {
127127
publish = false
128128
pkg {
129129
repo = 'RSocket'
130-
// vcsTag = "v${project.getVersion()}"
131-
// gpg {
132-
// sign = true
133-
// }
134130
name = project.name
135-
// dryRun = true
131+
// TODO
132+
dryRun = true
136133
websiteUrl = 'https://github.com/rsocket/rsocket-java'
137134
issueTrackerUrl = 'https://github.com/rsocket/rsocket-java'
138135
vcsUrl = 'https://github.com/rsocket/rsocket-java.git'
139136
licenses = ['Apache-2.0']
140137
if (project.hasProperty('sonatypeUsername') && project.hasProperty('sonatypePassword')) {
141138
def sonatypeUsername = project.property('sonatypeUsername')
142139
def sonatypePassword = project.property('sonatypePassword')
143-
mavenCentralSync {
144-
user = sonatypeUsername
145-
password = sonatypePassword
140+
version {
141+
name = "v${project.getVersion()}"
142+
vcsTag = "v${project.getVersion()}"
143+
gpg {
144+
sign = true
145+
}
146+
mavenCentralSync {
147+
// TODO
148+
sync = false
149+
user = sonatypeUsername
150+
password = sonatypePassword
151+
}
146152
}
147153
}
148154
}

0 commit comments

Comments
 (0)
0