jruby-jars 9.2.17.0 → 9.3.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 18b205481d88fb852a3c8362a8de0320e170df3e
4
- data.tar.gz: 1c64f5fad01bc639e9e6b58d5cbfd852bca273ac
2
+ SHA256:
3
+ metadata.gz: 5f5258064cde4ff8e4e49cb80166ffe906da1fb605cf17067c0f939d73798af5
4
+ data.tar.gz: 2ca8aa95bb24c83eca096e04a400029d12cbfd5133d7b08a622a1518f34e86f9
5
5
  SHA512:
6
- metadata.gz: 3d8831c3c8e03c05cd4bdd235a406d47ada5280804e80a9f3a094c15f116b778e01e5d3b91c91ad9f4c53dee5871e4c349b8acb55c2cb231dbfd1dfa3eb1591c
7
- data.tar.gz: b41e6cf16760e633a4d2b451ae22e862657463ef8f4929410126458e167326cb55f47433a655dbf634fdc7a93e0a7e45ad36c6d6acdf92f75d82d4d055677187
6
+ metadata.gz: ae485dd2665283875a0f3065314526236786637b3b9a56a58cd98401851865fcaff5e5ee5d3019b76655ea2f326287f3bfdee5b9edf58a8282f9d032ba3fcf67
7
+ data.tar.gz: d5bb072f2a8dfe57535503f39822bb2213aa9e6b6cc855ce76f53085783a76f8363a1a3fb19d0ab8688dba234e7de9213669f3858ace625380860dfb77f7b244
data/Mavenfile CHANGED
@@ -15,6 +15,7 @@ inherit "org.jruby:jruby-artifacts:#{version}"
15
15
  name "JRuby Jars Gem"
16
16
 
17
17
  jar 'org.jruby:jruby-stdlib', '${project.parent.version}'
18
+ jar 'org.jruby:jruby-core', '${project.parent.version}', scope: "compile"
18
19
 
19
20
  plugin( :clean, '2.5' ) do
20
21
  execute_goals( :clean,
@@ -53,7 +54,8 @@ end
53
54
  jruby_plugin!( :gem,
54
55
  :gemspec => 'jruby-jars.gemspec',
55
56
  # tell maven to include the jar files into gem
56
- :includeDependencies => true ) do
57
+ :includeDependencies => true,
58
+ :jrubyVersion => '9.3.0.0') do
57
59
  execute_goals :id => 'default-push', :skip => true
58
60
  end
59
61
 
data/jruby-jars.gemspec CHANGED
@@ -27,7 +27,11 @@ Gem::Specification.new do |s|
27
27
  s.homepage = 'https://github.com/jruby/jruby/tree/master/maven/jruby-jars'
28
28
  s.description = File.read('README.txt', encoding: 'UTF-8').split(/\n{2,}/)[3]
29
29
  s.licenses = %w(EPL-1.0 GPL-2.0 LGPL-2.1)
30
- s.files = Dir['[A-Z]*'] + Dir['lib/**/*.rb'] + Dir[ "lib/jruby-*-#{version}*.jar" ] + Dir[ 'test/**/*'] + [ 'jruby-jars.gemspec' ]
30
+ s.files = Dir['[A-Z]*'] +
31
+ Dir['lib/**/*.rb'] +
32
+ Dir[ 'test/**/*'] +
33
+ [ "lib/jruby-core-#{version}-complete.jar", "lib/jruby-stdlib-#{version}.jar" ] +
34
+ [ 'jruby-jars.gemspec' ]
31
35
  end
32
36
 
33
37
  # vim: syntax=Ruby
@@ -1,4 +1,4 @@
1
1
  module JRubyJars
2
- VERSION = '9.2.17.0'
3
- MAVEN_VERSION = '9.2.17.0'
2
+ VERSION = '9.3.1.0'
3
+ MAVEN_VERSION = '9.3.1.0'
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jruby-jars
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.2.17.0
4
+ version: 9.3.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Charles Oliver Nutter
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-29 00:00:00.000000000 Z
11
+ date: 2021-10-13 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |-
14
14
  This gem includes JRuby core and the Ruby standard library as jar files.
@@ -23,10 +23,10 @@ files:
23
23
  - Mavenfile
24
24
  - README.txt
25
25
  - jruby-jars.gemspec
26
- - lib/jruby-core-9.2.17.0-complete.jar
26
+ - lib/jruby-core-9.3.1.0-complete.jar
27
27
  - lib/jruby-jars.rb
28
28
  - lib/jruby-jars/version.rb
29
- - lib/jruby-stdlib-9.2.17.0.jar
29
+ - lib/jruby-stdlib-9.3.1.0.jar
30
30
  homepage: https://github.com/jruby/jruby/tree/master/maven/jruby-jars
31
31
  licenses:
32
32
  - EPL-1.0
@@ -39,17 +39,16 @@ require_paths:
39
39
  - lib
40
40
  required_ruby_version: !ruby/object:Gem::Requirement
41
41
  requirements:
42
- - - '>='
42
+ - - ">="
43
43
  - !ruby/object:Gem::Version
44
44
  version: '0'
45
45
  required_rubygems_version: !ruby/object:Gem::Requirement
46
46
  requirements:
47
- - - '>='
47
+ - - ">="
48
48
  - !ruby/object:Gem::Version
49
49
  version: '0'
50
50
  requirements: []
51
- rubyforge_project:
52
- rubygems_version: 2.4.8
51
+ rubygems_version: 3.2.14
53
52
  signing_key:
54
53
  specification_version: 4
55
54
  summary: The core JRuby code and the JRuby stdlib as jar files.