jruby-jars 9.2.20.0 → 9.3.2.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: f3622e302c730f2b7c3da14b6b04ac4398a0c8f3
4
- data.tar.gz: c519ef034c95d4b1f1ca51d6e0af723396c05b23
2
+ SHA256:
3
+ metadata.gz: 538641d2cd153d5786e66c40b315df247b89a03c1888e882e5050ffcc62a3f29
4
+ data.tar.gz: 40d97a9ecfa241347fc3ca44ab2beb47d1b0389b47c38c5d1ed8097774554914
5
5
  SHA512:
6
- metadata.gz: 72f2d49a4871637f22722edec18085bc564cd7226b9034a19fc71fb61a3f048e05b29148f36acef90c7f31acc11d65afd9f474a364c32fab4f1ca39037843200
7
- data.tar.gz: 36e58b78de58154dac52a71864cd52f44b6d829409c217bc99317be3fe90b420ebb8d7cae490f208e68aebd3bf912a16b176b6a13270ee037b1d9e07308bdc47
6
+ metadata.gz: 67007dc3854fefe91a2eff3bd1acb9ef780db81b85a3a6cd24abfef0a4d5d199f6abc5d3f75870a9b6d6ee68c1afb8c4ec291625b9e6f0907fbb9ab0bf8dd989
7
+ data.tar.gz: 007c1c21d3202c7e7c6f929c22fb584e82b8a87a6eaf9e77d1e8369f56e2b0b24344479b18b50d61fbd611c1711d1937d12802114e7342702ba8de7ff4256978
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.20.0'
3
- MAVEN_VERSION = '9.2.20.0'
2
+ VERSION = '9.3.2.0'
3
+ MAVEN_VERSION = '9.3.2.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.20.0
4
+ version: 9.3.2.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-11-02 00:00:00.000000000 Z
11
+ date: 2021-12-01 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.20.0-complete.jar
26
+ - lib/jruby-core-9.3.2.0-complete.jar
27
27
  - lib/jruby-jars.rb
28
28
  - lib/jruby-jars/version.rb
29
- - lib/jruby-stdlib-9.2.20.0.jar
29
+ - lib/jruby-stdlib-9.3.2.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.