|
453 | 453 | task :'maven-dry-run' => JAVA_RELEASE_TARGETS do |t|
|
454 | 454 | t.prerequisites.each do |p|
|
455 | 455 | if JAVA_RELEASE_TARGETS.include?(p)
|
456 |
| - Buck::buck_cmd.call('publish', ['--dry-run', '--remote-repo', 'https://oss.sonatype.org/service/local/staging/deploy/maven2', p]) |
| 456 | + Buck::buck_cmd('publish', ['--dry-run', '--remote-repo', 'https://oss.sonatype.org/service/local/staging/deploy/maven2', p]) |
457 | 457 | end
|
458 | 458 | end
|
459 | 459 | end
|
@@ -502,15 +502,15 @@ task :'publish-maven' => JAVA_RELEASE_TARGETS do
|
502 | 502 | creds = read_user_pass_from_m2_settings()
|
503 | 503 | JAVA_RELEASE_TARGETS.each do |p|
|
504 | 504 | if JAVA_RELEASE_TARGETS.include?(p)
|
505 |
| - Buck::buck_cmd.call('publish', ['--remote-repo', 'https://oss.sonatype.org/service/local/staging/deploy/maven2', '--include-source', '--include-docs', '-u', creds[0], '-p', creds[1], '--signing-passphrase', passphrase, p]) |
| 505 | + Buck::buck_cmd('publish', ['--remote-repo', 'https://oss.sonatype.org/service/local/staging/deploy/maven2', '--include-source', '--include-docs', '-u', creds[0], '-p', creds[1], '--signing-passphrase', passphrase, p]) |
506 | 506 | end
|
507 | 507 | end
|
508 | 508 | end
|
509 | 509 |
|
510 | 510 | task :'maven-install' do
|
511 | 511 | JAVA_RELEASE_TARGETS.each do |p|
|
512 | 512 | if JAVA_RELEASE_TARGETS.include?(p)
|
513 |
| - Buck::buck_cmd.call('publish', ['--remote-repo', "file://#{ENV['HOME']}/.m2/repository", '--include-source', '--include-docs', p]) |
| 513 | + Buck::buck_cmd('publish', ['--remote-repo', "file://#{ENV['HOME']}/.m2/repository", '--include-source', '--include-docs', p]) |
514 | 514 | end
|
515 | 515 | end
|
516 | 516 | end
|
|
0 commit comments