Skip to content

Commit a8bfd60

Browse files
mkristianheadius
authored andcommittedDec 5, 2017
pick new jruby-readline
this will include the jline shaded and relocated in the readline.jar fixes #4740
1 parent 0e6efdd commit a8bfd60

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed
 

‎lib/pom.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def initialize( name, version, default_spec = true )
2727
default_gems =
2828
[
2929
ImportedGem.new( 'jruby-openssl', '0.9.21' ),
30-
ImportedGem.new( 'jruby-readline', '1.1.1' ),
30+
ImportedGem.new( 'jruby-readline', '1.2.0' ),
3131
ImportedGem.new( 'rake', '${rake.version}' ),
3232
ImportedGem.new( 'rdoc', '${rdoc.version}' ),
3333
ImportedGem.new( 'minitest', '${minitest.version}' ),
@@ -68,8 +68,8 @@ def initialize( name, version, default_spec = true )
6868
# for testing out jruby-ossl before final release :
6969
#repository( :url => 'https://oss.sonatype.org/content/repositories/snapshots',
7070
# :id => 'gem-snaphots' )
71-
#repository( :url => 'http://oss.sonatype.org/content/repositories/staging',
72-
# :id => 'gem-staging' )
71+
repository( :url => 'http://oss.sonatype.org/content/repositories/staging',
72+
:id => 'gem-staging' )
7373

7474
plugin( :clean,
7575
:filesets => [ { :directory => '${basedir}/ruby/gems/shared/specifications/default',

‎lib/pom.xml

+5-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ DO NOT MODIFIY - GENERATED CODE
4747
<dependency>
4848
<groupId>rubygems</groupId>
4949
<artifactId>jruby-readline</artifactId>
50-
<version>1.1.1</version>
50+
<version>1.2.0</version>
5151
<type>gem</type>
5252
<scope>provided</scope>
5353
<exclusions>
@@ -193,6 +193,10 @@ DO NOT MODIFIY - GENERATED CODE
193193
<id>mavengems</id>
194194
<url>mavengem:https://rubygems.org</url>
195195
</repository>
196+
<repository>
197+
<id>gem-staging</id>
198+
<url>http://oss.sonatype.org/content/repositories/staging</url>
199+
</repository>
196200
</repositories>
197201
<build>
198202
<extensions>

0 commit comments

Comments
 (0)
Please sign in to comment.