We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2f5405 commit 9e724afCopy full SHA for 9e724af
gradle/scripts/deploy.gradle
@@ -18,9 +18,12 @@ tasks.register('stagingAtMavenCentralPortal') {
18
'https://ossrh-staging-api.central.sonatype.com/manual/search/repositories'
19
}.getStandardOutput().getAsText().get()
20
21
- def getRepositoryGroovy = new groovy.json.JsonSlurper().parseText(repositoryString)
+ def repositoryGroovy = new groovy.json.JsonSlurper().parseText(repositoryString)
22
23
- def key = getRepositoryGroovy.repositories[0].key
+ println("repositoryGroovy")
24
+ println(repositoryGroovy)
25
+
26
+ def key = repositoryGroovy.repositories[0].key
27
28
// Upload via curl
29
def stageResult = providers.exec {
0 commit comments