From: Matthias Sohn Date: Thu, 5 Jun 2014 23:24:03 +0000 (+0200) Subject: Enable passing version number to maven central scripts X-Git-Tag: v3.5.0.201409071800-rc1~108 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fchanges%2F85%2F28085%2F3;p=jgit.git Enable passing version number to maven central scripts Also check if the passed version matches the version pattern ...- Change-Id: Ib7edf51fb5e89232909611de5b4811a62b4f3953 Signed-off-by: Matthias Sohn --- diff --git a/tools/maven-central/deploy.rb b/tools/maven-central/deploy.rb index 44abccfc92..929af9cd7e 100755 --- a/tools/maven-central/deploy.rb +++ b/tools/maven-central/deploy.rb @@ -34,7 +34,14 @@ def get_passphrase(prompt="Enter your GPG Passphrase") ask(prompt) {|q| q.echo = false} end -version = '3.3.0.201403021825-r'.freeze +version = ARGV[0].freeze +if version =~ /\A(\d+\.\d+\.\d+)\.(\d{12})-(m\d|rc\d|r)\Z/ + printf "version %s qualifier %s classifier %s\n", $1, $2, $3 +else + printf "invalid version %s\n", version + abort +end + url = 'https://oss.sonatype.org/service/local/staging/deploy/maven2/' repositoryId = 'sonatype-nexus-staging' puts "gpg passphrase ?" diff --git a/tools/maven-central/download.rb b/tools/maven-central/download.rb index 949e6242fa..fc06f7da60 100755 --- a/tools/maven-central/download.rb +++ b/tools/maven-central/download.rb @@ -1,5 +1,12 @@ #!/usr/bin/env ruby -version = '3.3.0.201403021825-r'.freeze +version = ARGV[0].freeze +if version =~ /\A(\d+\.\d+\.\d+)\.(\d{12})-(m\d|rc\d|r)\Z/ + printf "version %s qualifier %s classifier %s\n", $1, $2, $3 +else + printf "invalid version %s\n", version + abort +end + group = 'org.eclipse.jgit' artifacts = [group, group + '.ant',