jruby-openssl 0.10.7-java → 0.11.0.cr1-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Mavenfile +2 -2
- data/lib/jopenssl/version.rb +1 -1
- data/lib/jopenssl.jar +0 -0
- data/pom.xml +12 -12
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f3f30690dc2b33cef639d984152204e362ca32fe
|
4
|
+
data.tar.gz: e28ede260833c9223108b43ca15d725224c678b7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c061354db76fc82fc1b554e633c4192f3795e109a78e4aba8fe9d3d3a244a2dc5ff29ee8e6389876abf12999c080375c191f7be654d3fe839f01a9882589d8af
|
7
|
+
data.tar.gz: 2cc1932d607582de0f4858c6e11fc32774ca3a1653ce3efc9bea20204e358feffe274e13c1d96c44cff5fa77600678c4703cdaf7d4a0e62f27a9c08982457e29
|
data/Mavenfile
CHANGED
@@ -7,7 +7,7 @@ distribution_management do
|
|
7
7
|
repository :id => :ossrh, :url => 'https://oss.sonatype.org/service/local/staging/deploy/maven2/'
|
8
8
|
end
|
9
9
|
|
10
|
-
java_target = '1.
|
10
|
+
java_target = '1.8'
|
11
11
|
gen_sources = '${basedir}/target/generated-sources' # hard-coded in AnnotationBinder
|
12
12
|
|
13
13
|
plugin( 'org.codehaus.mojo:exec-maven-plugin', '1.3.2' ) do
|
@@ -46,7 +46,7 @@ plugin( 'org.codehaus.mojo:build-helper-maven-plugin', '1.9' ) do
|
|
46
46
|
end
|
47
47
|
|
48
48
|
plugin( :compiler, '3.1',
|
49
|
-
:source => '1.
|
49
|
+
:source => '1.8', :target => java_target,
|
50
50
|
:encoding => 'UTF-8', :debug => true,
|
51
51
|
:showWarnings => true, :showDeprecation => true,
|
52
52
|
:excludes => [ 'module-info.java' ],
|
data/lib/jopenssl/version.rb
CHANGED
data/lib/jopenssl.jar
CHANGED
Binary file
|
data/pom.xml
CHANGED
@@ -11,7 +11,7 @@ DO NOT MODIFIY - GENERATED CODE
|
|
11
11
|
<modelVersion>4.0.0</modelVersion>
|
12
12
|
<groupId>rubygems</groupId>
|
13
13
|
<artifactId>jruby-openssl</artifactId>
|
14
|
-
<version>0.
|
14
|
+
<version>0.11.0.cr1-SNAPSHOT</version>
|
15
15
|
<packaging>gem</packaging>
|
16
16
|
<name>JRuby OpenSSL</name>
|
17
17
|
<description>JRuby-OpenSSL is an add-on gem for JRuby that emulates the Ruby OpenSSL native library.</description>
|
@@ -61,17 +61,17 @@ DO NOT MODIFIY - GENERATED CODE
|
|
61
61
|
</distributionManagement>
|
62
62
|
<properties>
|
63
63
|
<bc.versions>1.68</bc.versions>
|
64
|
-
<
|
64
|
+
<invoker.skip>${maven.test.skip}</invoker.skip>
|
65
|
+
<invoker.test>${bc.versions}</invoker.test>
|
66
|
+
<jruby.plugins.version>1.1.8</jruby.plugins.version>
|
65
67
|
<jruby.switches>-W0</jruby.switches>
|
66
68
|
<jruby.version>9.1.17.0</jruby.version>
|
67
|
-
<jruby.plugins.version>1.1.8</jruby.plugins.version>
|
68
|
-
<invoker.skip>${maven.test.skip}</invoker.skip>
|
69
|
-
<runit.dir>src/test/ruby/**/test_*.rb</runit.dir>
|
70
|
-
<mavengem-wagon.version>1.0.3</mavengem-wagon.version>
|
71
69
|
<jruby.versions>9.1.17.0</jruby.versions>
|
72
|
-
<
|
70
|
+
<mavengem-wagon.version>1.0.3</mavengem-wagon.version>
|
71
|
+
<mavengem.wagon.version>1.0.3</mavengem.wagon.version>
|
73
72
|
<polyglot.dump.pom>pom.xml</polyglot.dump.pom>
|
74
|
-
<
|
73
|
+
<polyglot.dump.readonly>false</polyglot.dump.readonly>
|
74
|
+
<runit.dir>src/test/ruby/**/test_*.rb</runit.dir>
|
75
75
|
</properties>
|
76
76
|
<dependencies>
|
77
77
|
<dependency>
|
@@ -209,7 +209,7 @@ DO NOT MODIFIY - GENERATED CODE
|
|
209
209
|
<executable>java</executable>
|
210
210
|
<classpathScope>compile</classpathScope>
|
211
211
|
<arguments>
|
212
|
-
<argument>-Djruby.bytecode.version=1.
|
212
|
+
<argument>-Djruby.bytecode.version=1.8</argument>
|
213
213
|
<argument>-classpath</argument>
|
214
214
|
<classpath />
|
215
215
|
<argument>org.jruby.anno.InvokerGenerator</argument>
|
@@ -261,8 +261,8 @@ DO NOT MODIFIY - GENERATED CODE
|
|
261
261
|
</execution>
|
262
262
|
</executions>
|
263
263
|
<configuration>
|
264
|
-
<source>1.
|
265
|
-
<target>1.
|
264
|
+
<source>1.8</source>
|
265
|
+
<target>1.8</target>
|
266
266
|
<encoding>UTF-8</encoding>
|
267
267
|
<debug>true</debug>
|
268
268
|
<showWarnings>true</showWarnings>
|
@@ -368,7 +368,7 @@ DO NOT MODIFIY - GENERATED CODE
|
|
368
368
|
<version>3.8.1</version>
|
369
369
|
<configuration>
|
370
370
|
<source>9</source>
|
371
|
-
<target>1.
|
371
|
+
<target>1.8</target>
|
372
372
|
<release>9</release>
|
373
373
|
<includes>
|
374
374
|
<include>module-info.java</include>
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jruby-openssl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.0.cr1
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Karol Bucek
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2021-
|
13
|
+
date: 2021-10-20 00:00:00.000000000 Z
|
14
14
|
dependencies: []
|
15
15
|
description: JRuby-OpenSSL is an add-on gem for JRuby that emulates the Ruby OpenSSL native library.
|
16
16
|
email: self+jruby-openssl@kares.org
|