Skip to content

Commit b95ee52

Browse files
committedJun 22, 2018
test out jruby-openssl 0.10.1 from staging
1 parent e1d02a0 commit b95ee52

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed
 

Diff for: ‎lib/pom.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def initialize( name, version, default_spec = true )
3131
ImportedGem.new('ipaddr', '1.2.0'),
3232
ImportedGem.new('jar-dependencies', '${jar-dependencies.version}'),
3333
ImportedGem.new('jruby-readline', '1.3.5'),
34-
ImportedGem.new('jruby-openssl', '0.10.0'),
34+
ImportedGem.new('jruby-openssl', '0.10.1'),
3535
ImportedGem.new('json', '${json.version}'),
3636
ImportedGem.new('psych', '3.0.2'),
3737
ImportedGem.new('rake-ant', '1.0.4'),
@@ -78,8 +78,8 @@ def initialize( name, version, default_spec = true )
7878
# for testing out jruby-ossl before final release :
7979
#repository( :url => 'https://oss.sonatype.org/content/repositories/snapshots',
8080
# :id => 'gem-snaphots' )
81-
#repository( :url => 'http://oss.sonatype.org/content/repositories/staging',
82-
# :id => 'gem-staging' )
81+
repository( :url => 'http://oss.sonatype.org/content/repositories/staging',
82+
:id => 'gem-staging' )
8383

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

Diff for: ‎lib/pom.xml

+6-2
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ DO NOT MODIFIY - GENERATED CODE
112112
<dependency>
113113
<groupId>rubygems</groupId>
114114
<artifactId>jruby-openssl</artifactId>
115-
<version>0.10.0</version>
115+
<version>0.10.1</version>
116116
<type>gem</type>
117117
<scope>provided</scope>
118118
<exclusions>
@@ -297,6 +297,10 @@ DO NOT MODIFIY - GENERATED CODE
297297
<id>mavengems</id>
298298
<url>mavengem:https://rubygems.org</url>
299299
</repository>
300+
<repository>
301+
<id>gem-staging</id>
302+
<url>http://oss.sonatype.org/content/repositories/staging</url>
303+
</repository>
300304
</repositories>
301305
<build>
302306
<extensions>
@@ -340,7 +344,7 @@ DO NOT MODIFIY - GENERATED CODE
340344
<exclude>gems/ipaddr*1.2.0/*</exclude>
341345
<exclude>gems/jar-dependencies*${jar-dependencies.version}/*</exclude>
342346
<exclude>gems/jruby-readline*1.3.5/*</exclude>
343-
<exclude>gems/jruby-openssl*0.10.0/*</exclude>
347+
<exclude>gems/jruby-openssl*0.10.1/*</exclude>
344348
<exclude>gems/json*${json.version}/*</exclude>
345349
<exclude>gems/psych*3.0.2/*</exclude>
346350
<exclude>gems/rake-ant*1.0.4/*</exclude>

0 commit comments

Comments
 (0)
Please sign in to comment.