diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2014-03-05 00:43:21 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2014-03-05 00:43:21 +0100 |
commit | f59b680c4c0edd257b4777932bdb2cc2de1db797 (patch) | |
tree | dd59f5f58dac236d7f851b8bbdfc89c87180e0c3 /tools | |
parent | c1fee1d16b3da4c6af1e86dbd71fbf55f4b5bb0d (diff) | |
download | jgit-f59b680c4c0edd257b4777932bdb2cc2de1db797.tar.gz jgit-f59b680c4c0edd257b4777932bdb2cc2de1db797.zip |
Update scripts to deploy jgit on Maven central
Change-Id: I760ad82f2455cfc2cdc76c9331a03b09aebb2349
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/maven-central/deploy.rb | 3 | ||||
-rwxr-xr-x | tools/maven-central/download.rb | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/tools/maven-central/deploy.rb b/tools/maven-central/deploy.rb index f169747c79..44abccfc92 100755 --- a/tools/maven-central/deploy.rb +++ b/tools/maven-central/deploy.rb @@ -34,7 +34,7 @@ def get_passphrase(prompt="Enter your GPG Passphrase") ask(prompt) {|q| q.echo = false} end -version = '3.1.0.201310021548-r'.freeze +version = '3.3.0.201403021825-r'.freeze url = 'https://oss.sonatype.org/service/local/staging/deploy/maven2/' repositoryId = 'sonatype-nexus-staging' puts "gpg passphrase ?" @@ -45,6 +45,7 @@ artifacts = [group, group + '.ant', group + '.archive', group + '.console', + group + '.http.apache', group + '.http.server', group + '.java7', group + '.junit', diff --git a/tools/maven-central/download.rb b/tools/maven-central/download.rb index b5dd871f31..949e6242fa 100755 --- a/tools/maven-central/download.rb +++ b/tools/maven-central/download.rb @@ -1,10 +1,11 @@ #!/usr/bin/env ruby -version = '3.1.0.201310021548-r'.freeze +version = '3.3.0.201403021825-r'.freeze group = 'org.eclipse.jgit' artifacts = [group, group + '.ant', group + '.archive', group + '.console', + group + '.http.apache', group + '.http.server', group + '.java7', group + '.junit', |