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 1efb74d commit 7e1e6f1Copy full SHA for 7e1e6f1
Rakefile
@@ -963,9 +963,9 @@ namespace :java do
963
ENV['MAVEN_USER'] ||= ENV.fetch('SEL_M2_USER', nil)
964
ENV['MAVEN_PASSWORD'] ||= ENV.fetch('SEL_M2_PASS', nil)
965
read_m2_user_pass unless ENV['MAVEN_PASSWORD'] && ENV['MAVEN_USER']
966
-
967
- repo = nightly ? 'content/repositories/snapshots' : 'service/local/staging/deploy/maven2'
968
- ENV['MAVEN_REPO'] = "https://central.sonatype.org/#{repo}"
+ repo_domain = 'central.sonatype.com'
+ repo = nightly ? "#{repo_domain}/repository/maven-snapshots" : "ossrh-staging-api.#{repo_domain}/service/local/"
+ ENV['MAVEN_REPO'] = "https://#{repo}"
969
ENV['GPG_SIGN'] = (!nightly).to_s
970
971
if nightly
0 commit comments