Skip to content

Commit 9e724af

Browse files
debugging 1
1 parent b2f5405 commit 9e724af

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

gradle/scripts/deploy.gradle

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,12 @@ tasks.register('stagingAtMavenCentralPortal') {
1818
'https://ossrh-staging-api.central.sonatype.com/manual/search/repositories'
1919
}.getStandardOutput().getAsText().get()
2020

21-
def getRepositoryGroovy = new groovy.json.JsonSlurper().parseText(repositoryString)
21+
def repositoryGroovy = new groovy.json.JsonSlurper().parseText(repositoryString)
2222

23-
def key = getRepositoryGroovy.repositories[0].key
23+
println("repositoryGroovy")
24+
println(repositoryGroovy)
25+
26+
def key = repositoryGroovy.repositories[0].key
2427

2528
// Upload via curl
2629
def stageResult = providers.exec {

0 commit comments

Comments
 (0)