Upgrade the version of both the gem and jar simultaneously

This commit is contained in:
R. Tyler Croy 2015-09-18 15:45:23 -07:00
parent b149a654e7
commit 33e0ad49ba
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
2 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@ buildscript {
}
dependencies {
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2"
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:[1.3.1,1.4)'
}
}
@ -13,7 +13,7 @@ apply plugin: 'groovy'
apply plugin: 'maven'
apply plugin: 'com.jfrog.bintray'
version = '0.2.0'
version = '0.2.1'
group = 'com.github.jruby-gradle'
description = 'A library for managing Ruby gems'
defaultTasks 'check', 'assemble'

View File

@ -2,12 +2,12 @@
Gem::Specification.new do |s|
s.name = 'jems'
s.version = '0.1.6'
s.version = '0.2.1'
s.authors = ['Christian Meier']
s.summary = 'JRuby Jems'
s.files = ['jems.gemspec', 'lib/jems.rb']
s.platform = 'java'
s.requirements << "jar com.github.jrubygradle:jem, #{s.version}"
s.requirements << "jar com.github.jruby-gradle:jem, #{s.version}"
s.add_runtime_dependency 'jar-dependencies', '~> 0.1.15'
end