jruby-openssl 0.16.2-java → 0.19.0-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/History.md +104 -0
- data/Mavenfile +180 -93
- data/README.md +100 -27
- data/Rakefile +77 -26
- data/lib/jopenssl/load.rb +13 -57
- data/lib/jopenssl/version.rb +2 -7
- data/lib/jopenssl.jar +0 -0
- data/lib/openssl/config.rb +13 -5
- data/lib/openssl/ssl.rb +21 -11
- data/lib/openssl.rb +43 -0
- data/pom.xml +656 -108
- metadata +20 -21
- data/lib/openssl/pkcs12.rb +0 -101
- /data/{lib → vendor}/org/bouncycastle/bcpkix-jdk18on/1.85/bcpkix-jdk18on-1.85.jar +0 -0
- /data/{lib → vendor}/org/bouncycastle/bcprov-jdk18on/1.85/bcprov-jdk18on-1.85.jar +0 -0
- /data/{lib → vendor}/org/bouncycastle/bctls-jdk18on/1.85/bctls-jdk18on-1.85.jar +0 -0
- /data/{lib → vendor}/org/bouncycastle/bcutil-jdk18on/1.85/bcutil-jdk18on-1.85.jar +0 -0
data/pom.xml
CHANGED
|
@@ -9,13 +9,12 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
9
9
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
10
10
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
11
11
|
<modelVersion>4.0.0</modelVersion>
|
|
12
|
-
<groupId>
|
|
12
|
+
<groupId>org.jruby.openssl</groupId>
|
|
13
13
|
<artifactId>jruby-openssl</artifactId>
|
|
14
|
-
<version>0.
|
|
14
|
+
<version>0.19.0</version>
|
|
15
15
|
<packaging>gem</packaging>
|
|
16
|
-
<name>JRuby
|
|
17
|
-
<description>
|
|
18
|
-
<url>https://github.com/jruby/jruby-openssl</url>
|
|
16
|
+
<name>SSL/TLS and general-purpose cryptography for JRuby</name>
|
|
17
|
+
<description>Ruby OpenSSL compatibility for JRuby, based on Java JCA/JCE and Bouncy Castle libraries (does not depend on native OpenSSL).</description>
|
|
19
18
|
<licenses>
|
|
20
19
|
<license>
|
|
21
20
|
<name>EPL-1.0</name>
|
|
@@ -36,7 +35,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
36
35
|
<developers>
|
|
37
36
|
<developer>
|
|
38
37
|
<name>Karol Bucek</name>
|
|
39
|
-
<email>
|
|
38
|
+
<email>jossl@kares.org</email>
|
|
40
39
|
</developer>
|
|
41
40
|
<developer>
|
|
42
41
|
<name>Ola Bini</name>
|
|
@@ -45,10 +44,6 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
45
44
|
<name>JRuby contributors</name>
|
|
46
45
|
</developer>
|
|
47
46
|
</developers>
|
|
48
|
-
<scm>
|
|
49
|
-
<connection>https://github.com/jruby/jruby-openssl.git</connection>
|
|
50
|
-
<url>https://github.com/jruby/jruby-openssl</url>
|
|
51
|
-
</scm>
|
|
52
47
|
<distributionManagement>
|
|
53
48
|
<repository>
|
|
54
49
|
<id>ossrh</id>
|
|
@@ -61,39 +56,41 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
61
56
|
</distributionManagement>
|
|
62
57
|
<properties>
|
|
63
58
|
<bc.versions>1.85</bc.versions>
|
|
59
|
+
<gem.deploy.skip>false</gem.deploy.skip>
|
|
64
60
|
<invoker.skip>${maven.test.skip}</invoker.skip>
|
|
65
61
|
<invoker.test>${bc.versions}</invoker.test>
|
|
66
62
|
<jruby.plugins.version>3.0.6</jruby.plugins.version>
|
|
67
63
|
<jruby.switches>-W0</jruby.switches>
|
|
68
|
-
<jruby.version>9.
|
|
69
|
-
<jruby.versions>9.
|
|
64
|
+
<jruby.version>9.4.14.0</jruby.version>
|
|
65
|
+
<jruby.versions>9.4.14.0</jruby.versions>
|
|
70
66
|
<mavengem-wagon.version>3.0.0</mavengem-wagon.version>
|
|
71
67
|
<mavengem.wagon.version>2.0.2</mavengem.wagon.version>
|
|
72
68
|
<polyglot.dump.pom>pom.xml</polyglot.dump.pom>
|
|
73
69
|
<polyglot.dump.readonly>false</polyglot.dump.readonly>
|
|
74
|
-
<runit.dir>
|
|
70
|
+
<runit.dir>test/**/test_*.rb</runit.dir>
|
|
71
|
+
<shim.inline.skip>false</shim.inline.skip>
|
|
75
72
|
<skipRunit>true</skipRunit>
|
|
76
73
|
</properties>
|
|
77
74
|
<dependencies>
|
|
78
75
|
<dependency>
|
|
79
76
|
<groupId>org.bouncycastle</groupId>
|
|
80
77
|
<artifactId>bcprov-jdk18on</artifactId>
|
|
81
|
-
<version>1.85</version>
|
|
78
|
+
<version>[1.80,1.85]</version>
|
|
82
79
|
</dependency>
|
|
83
80
|
<dependency>
|
|
84
81
|
<groupId>org.bouncycastle</groupId>
|
|
85
82
|
<artifactId>bcpkix-jdk18on</artifactId>
|
|
86
|
-
<version>1.85</version>
|
|
83
|
+
<version>[1.80,1.85]</version>
|
|
87
84
|
</dependency>
|
|
88
85
|
<dependency>
|
|
89
86
|
<groupId>org.bouncycastle</groupId>
|
|
90
87
|
<artifactId>bctls-jdk18on</artifactId>
|
|
91
|
-
<version>1.85</version>
|
|
88
|
+
<version>[1.80,1.85]</version>
|
|
92
89
|
</dependency>
|
|
93
90
|
<dependency>
|
|
94
91
|
<groupId>org.bouncycastle</groupId>
|
|
95
92
|
<artifactId>bcutil-jdk18on</artifactId>
|
|
96
|
-
<version>1.85</version>
|
|
93
|
+
<version>[1.80,1.85]</version>
|
|
97
94
|
</dependency>
|
|
98
95
|
<dependency>
|
|
99
96
|
<groupId>org.jruby</groupId>
|
|
@@ -101,6 +98,12 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
101
98
|
<version>9.2.1.0</version>
|
|
102
99
|
<scope>provided</scope>
|
|
103
100
|
</dependency>
|
|
101
|
+
<dependency>
|
|
102
|
+
<groupId>org.ow2.asm</groupId>
|
|
103
|
+
<artifactId>asm-analysis</artifactId>
|
|
104
|
+
<version>9.8</version>
|
|
105
|
+
<scope>provided</scope>
|
|
106
|
+
</dependency>
|
|
104
107
|
<dependency>
|
|
105
108
|
<groupId>javax.annotation</groupId>
|
|
106
109
|
<artifactId>javax.annotation-api</artifactId>
|
|
@@ -155,6 +158,14 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
155
158
|
<configuration>
|
|
156
159
|
<outputDirectory>lib</outputDirectory>
|
|
157
160
|
<finalName>jopenssl</finalName>
|
|
161
|
+
<excludes>
|
|
162
|
+
<exclude>annotated_classes.txt</exclude>
|
|
163
|
+
</excludes>
|
|
164
|
+
<archive>
|
|
165
|
+
<manifestEntries>
|
|
166
|
+
<JOpenSSL-Variant>main</JOpenSSL-Variant>
|
|
167
|
+
</manifestEntries>
|
|
168
|
+
</archive>
|
|
158
169
|
</configuration>
|
|
159
170
|
</plugin>
|
|
160
171
|
<plugin>
|
|
@@ -166,27 +177,21 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
166
177
|
<directory>lib</directory>
|
|
167
178
|
<includes>
|
|
168
179
|
<include>jopenssl.jar</include>
|
|
169
|
-
|
|
180
|
+
</includes>
|
|
181
|
+
</fileset>
|
|
182
|
+
<fileset>
|
|
183
|
+
<directory>vendor</directory>
|
|
184
|
+
</fileset>
|
|
185
|
+
<fileset>
|
|
186
|
+
<directory>target</directory>
|
|
187
|
+
<includes>
|
|
188
|
+
<include>*</include>
|
|
170
189
|
</includes>
|
|
171
190
|
</fileset>
|
|
172
191
|
</filesets>
|
|
192
|
+
<failOnError>false</failOnError>
|
|
173
193
|
</configuration>
|
|
174
194
|
</plugin>
|
|
175
|
-
<plugin>
|
|
176
|
-
<artifactId>maven-dependency-plugin</artifactId>
|
|
177
|
-
<executions>
|
|
178
|
-
<execution>
|
|
179
|
-
<phase>generate-test-resources</phase>
|
|
180
|
-
<goals>
|
|
181
|
-
<goal>copy-dependencies</goal>
|
|
182
|
-
</goals>
|
|
183
|
-
<configuration>
|
|
184
|
-
<outputDirectory>lib</outputDirectory>
|
|
185
|
-
<useRepositoryLayout>true</useRepositoryLayout>
|
|
186
|
-
</configuration>
|
|
187
|
-
</execution>
|
|
188
|
-
</executions>
|
|
189
|
-
</plugin>
|
|
190
195
|
<plugin>
|
|
191
196
|
<groupId>org.jruby.maven</groupId>
|
|
192
197
|
<artifactId>gem-maven-plugin</artifactId>
|
|
@@ -208,8 +213,6 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
208
213
|
</executions>
|
|
209
214
|
<configuration>
|
|
210
215
|
<gemspec>jruby-openssl.gemspec</gemspec>
|
|
211
|
-
<includeDependencies>true</includeDependencies>
|
|
212
|
-
<useRepositoryLayout>true</useRepositoryLayout>
|
|
213
216
|
</configuration>
|
|
214
217
|
</plugin>
|
|
215
218
|
<plugin>
|
|
@@ -236,6 +239,24 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
236
239
|
</arguments>
|
|
237
240
|
</configuration>
|
|
238
241
|
</execution>
|
|
242
|
+
<execution>
|
|
243
|
+
<id>shim-inliner</id>
|
|
244
|
+
<phase>process-classes</phase>
|
|
245
|
+
<goals>
|
|
246
|
+
<goal>exec</goal>
|
|
247
|
+
</goals>
|
|
248
|
+
<configuration>
|
|
249
|
+
<executable>java</executable>
|
|
250
|
+
<classpathScope>compile</classpathScope>
|
|
251
|
+
<skip>${shim.inline.skip}</skip>
|
|
252
|
+
<arguments>
|
|
253
|
+
<argument>-classpath</argument>
|
|
254
|
+
<classpath />
|
|
255
|
+
<argument>${basedir}/src/build/java/ShimInliner.java</argument>
|
|
256
|
+
<argument>${project.build.outputDirectory}</argument>
|
|
257
|
+
</arguments>
|
|
258
|
+
</configuration>
|
|
259
|
+
</execution>
|
|
239
260
|
</executions>
|
|
240
261
|
</plugin>
|
|
241
262
|
<plugin>
|
|
@@ -256,6 +277,25 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
256
277
|
</execution>
|
|
257
278
|
</executions>
|
|
258
279
|
</plugin>
|
|
280
|
+
<plugin>
|
|
281
|
+
<artifactId>maven-enforcer-plugin</artifactId>
|
|
282
|
+
<version>3.5.0</version>
|
|
283
|
+
<executions>
|
|
284
|
+
<execution>
|
|
285
|
+
<id>enforce-java-version</id>
|
|
286
|
+
<goals>
|
|
287
|
+
<goal>enforce</goal>
|
|
288
|
+
</goals>
|
|
289
|
+
<configuration>
|
|
290
|
+
<rules>
|
|
291
|
+
<requireJavaVersion>
|
|
292
|
+
<version>[11,)</version>
|
|
293
|
+
</requireJavaVersion>
|
|
294
|
+
</rules>
|
|
295
|
+
</configuration>
|
|
296
|
+
</execution>
|
|
297
|
+
</executions>
|
|
298
|
+
</plugin>
|
|
259
299
|
<plugin>
|
|
260
300
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
261
301
|
<version>3.15.0</version>
|
|
@@ -281,6 +321,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
281
321
|
<configuration>
|
|
282
322
|
<source>1.8</source>
|
|
283
323
|
<target>1.8</target>
|
|
324
|
+
<release>8</release>
|
|
284
325
|
<encoding>UTF-8</encoding>
|
|
285
326
|
<debug>true</debug>
|
|
286
327
|
<showWarnings>true</showWarnings>
|
|
@@ -294,38 +335,6 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
294
335
|
</annotationProcessors>
|
|
295
336
|
</configuration>
|
|
296
337
|
</plugin>
|
|
297
|
-
<plugin>
|
|
298
|
-
<artifactId>maven-clean-plugin</artifactId>
|
|
299
|
-
<executions>
|
|
300
|
-
<execution>
|
|
301
|
-
<id>default-clean</id>
|
|
302
|
-
<phase>clean</phase>
|
|
303
|
-
<goals>
|
|
304
|
-
<goal>clean</goal>
|
|
305
|
-
</goals>
|
|
306
|
-
<configuration>
|
|
307
|
-
<filesets>
|
|
308
|
-
<fileset>
|
|
309
|
-
<directory>lib</directory>
|
|
310
|
-
<includes>
|
|
311
|
-
<include>jopenssl.jar</include>
|
|
312
|
-
</includes>
|
|
313
|
-
</fileset>
|
|
314
|
-
<fileset>
|
|
315
|
-
<directory>lib/org</directory>
|
|
316
|
-
</fileset>
|
|
317
|
-
<fileset>
|
|
318
|
-
<directory>target</directory>
|
|
319
|
-
<includes>
|
|
320
|
-
<include>*</include>
|
|
321
|
-
</includes>
|
|
322
|
-
</fileset>
|
|
323
|
-
</filesets>
|
|
324
|
-
<failOnError>false</failOnError>
|
|
325
|
-
</configuration>
|
|
326
|
-
</execution>
|
|
327
|
-
</executions>
|
|
328
|
-
</plugin>
|
|
329
338
|
<plugin>
|
|
330
339
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
331
340
|
<version>3.5.5</version>
|
|
@@ -339,7 +348,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
339
348
|
<goal>deploy</goal>
|
|
340
349
|
</goals>
|
|
341
350
|
<configuration>
|
|
342
|
-
<skip
|
|
351
|
+
<skip>${gem.deploy.skip}</skip>
|
|
343
352
|
</configuration>
|
|
344
353
|
</execution>
|
|
345
354
|
</executions>
|
|
@@ -353,28 +362,13 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
353
362
|
<goal>copy-dependencies</goal>
|
|
354
363
|
</goals>
|
|
355
364
|
<configuration>
|
|
356
|
-
<outputDirectory>${basedir}/
|
|
365
|
+
<outputDirectory>${basedir}/vendor</outputDirectory>
|
|
357
366
|
<useRepositoryLayout>true</useRepositoryLayout>
|
|
358
367
|
<includeGroupIds>org.bouncycastle</includeGroupIds>
|
|
359
368
|
</configuration>
|
|
360
369
|
</execution>
|
|
361
370
|
</executions>
|
|
362
371
|
</plugin>
|
|
363
|
-
<plugin>
|
|
364
|
-
<groupId>org.jruby.maven</groupId>
|
|
365
|
-
<artifactId>runit-maven-plugin</artifactId>
|
|
366
|
-
<version>${jruby.plugins.version}</version>
|
|
367
|
-
<executions>
|
|
368
|
-
<execution>
|
|
369
|
-
<goals>
|
|
370
|
-
<goal>test</goal>
|
|
371
|
-
</goals>
|
|
372
|
-
<configuration>
|
|
373
|
-
<runitDirectory>${runit.dir}</runitDirectory>
|
|
374
|
-
</configuration>
|
|
375
|
-
</execution>
|
|
376
|
-
</executions>
|
|
377
|
-
</plugin>
|
|
378
372
|
</plugins>
|
|
379
373
|
</build>
|
|
380
374
|
<profiles>
|
|
@@ -393,14 +387,13 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
393
387
|
<goal>run</goal>
|
|
394
388
|
</goals>
|
|
395
389
|
<configuration>
|
|
396
|
-
<projectsDirectory>
|
|
390
|
+
<projectsDirectory>src/it</projectsDirectory>
|
|
397
391
|
<pomIncludes>
|
|
398
392
|
<pomInclude>*/pom.xml</pomInclude>
|
|
399
393
|
</pomIncludes>
|
|
400
394
|
<streamLogs>true</streamLogs>
|
|
401
395
|
<properties>
|
|
402
396
|
<jruby.versions>${jruby.versions}</jruby.versions>
|
|
403
|
-
<jruby.modes>${jruby.modes}</jruby.modes>
|
|
404
397
|
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
|
405
398
|
<bc.versions>${bc.versions}</bc.versions>
|
|
406
399
|
<runit.dir>${runit.dir}</runit.dir>
|
|
@@ -412,7 +405,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
412
405
|
</plugins>
|
|
413
406
|
</build>
|
|
414
407
|
<properties>
|
|
415
|
-
<bc.versions>1.
|
|
408
|
+
<bc.versions>1.80,1.81,1.82,1.83,1.84,1.85</bc.versions>
|
|
416
409
|
<jruby.version>9.2.19.0</jruby.version>
|
|
417
410
|
<jruby.versions>9.2.19.0</jruby.versions>
|
|
418
411
|
</properties>
|
|
@@ -431,14 +424,13 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
431
424
|
<goal>run</goal>
|
|
432
425
|
</goals>
|
|
433
426
|
<configuration>
|
|
434
|
-
<projectsDirectory>
|
|
427
|
+
<projectsDirectory>src/it</projectsDirectory>
|
|
435
428
|
<pomIncludes>
|
|
436
429
|
<pomInclude>*/pom.xml</pomInclude>
|
|
437
430
|
</pomIncludes>
|
|
438
431
|
<streamLogs>true</streamLogs>
|
|
439
432
|
<properties>
|
|
440
433
|
<jruby.versions>${jruby.versions}</jruby.versions>
|
|
441
|
-
<jruby.modes>${jruby.modes}</jruby.modes>
|
|
442
434
|
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
|
443
435
|
<bc.versions>${bc.versions}</bc.versions>
|
|
444
436
|
<runit.dir>${runit.dir}</runit.dir>
|
|
@@ -450,7 +442,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
450
442
|
</plugins>
|
|
451
443
|
</build>
|
|
452
444
|
<properties>
|
|
453
|
-
<bc.versions>1.
|
|
445
|
+
<bc.versions>1.80,1.81,1.82,1.83,1.84,1.85</bc.versions>
|
|
454
446
|
<jruby.version>9.2.20.1</jruby.version>
|
|
455
447
|
<jruby.versions>9.2.20.1</jruby.versions>
|
|
456
448
|
</properties>
|
|
@@ -469,14 +461,13 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
469
461
|
<goal>run</goal>
|
|
470
462
|
</goals>
|
|
471
463
|
<configuration>
|
|
472
|
-
<projectsDirectory>
|
|
464
|
+
<projectsDirectory>src/it</projectsDirectory>
|
|
473
465
|
<pomIncludes>
|
|
474
466
|
<pomInclude>*/pom.xml</pomInclude>
|
|
475
467
|
</pomIncludes>
|
|
476
468
|
<streamLogs>true</streamLogs>
|
|
477
469
|
<properties>
|
|
478
470
|
<jruby.versions>${jruby.versions}</jruby.versions>
|
|
479
|
-
<jruby.modes>${jruby.modes}</jruby.modes>
|
|
480
471
|
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
|
481
472
|
<bc.versions>${bc.versions}</bc.versions>
|
|
482
473
|
<runit.dir>${runit.dir}</runit.dir>
|
|
@@ -488,7 +479,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
488
479
|
</plugins>
|
|
489
480
|
</build>
|
|
490
481
|
<properties>
|
|
491
|
-
<bc.versions>1.
|
|
482
|
+
<bc.versions>1.80,1.81,1.82,1.83,1.84,1.85</bc.versions>
|
|
492
483
|
<jruby.version>9.3.3.0</jruby.version>
|
|
493
484
|
<jruby.versions>9.3.3.0</jruby.versions>
|
|
494
485
|
</properties>
|
|
@@ -507,14 +498,13 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
507
498
|
<goal>run</goal>
|
|
508
499
|
</goals>
|
|
509
500
|
<configuration>
|
|
510
|
-
<projectsDirectory>
|
|
501
|
+
<projectsDirectory>src/it</projectsDirectory>
|
|
511
502
|
<pomIncludes>
|
|
512
503
|
<pomInclude>*/pom.xml</pomInclude>
|
|
513
504
|
</pomIncludes>
|
|
514
505
|
<streamLogs>true</streamLogs>
|
|
515
506
|
<properties>
|
|
516
507
|
<jruby.versions>${jruby.versions}</jruby.versions>
|
|
517
|
-
<jruby.modes>${jruby.modes}</jruby.modes>
|
|
518
508
|
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
|
519
509
|
<bc.versions>${bc.versions}</bc.versions>
|
|
520
510
|
<runit.dir>${runit.dir}</runit.dir>
|
|
@@ -526,7 +516,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
526
516
|
</plugins>
|
|
527
517
|
</build>
|
|
528
518
|
<properties>
|
|
529
|
-
<bc.versions>1.
|
|
519
|
+
<bc.versions>1.80,1.81,1.82,1.83,1.84,1.85</bc.versions>
|
|
530
520
|
<jruby.version>9.3.13.0</jruby.version>
|
|
531
521
|
<jruby.versions>9.3.13.0</jruby.versions>
|
|
532
522
|
</properties>
|
|
@@ -545,14 +535,13 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
545
535
|
<goal>run</goal>
|
|
546
536
|
</goals>
|
|
547
537
|
<configuration>
|
|
548
|
-
<projectsDirectory>
|
|
538
|
+
<projectsDirectory>src/it</projectsDirectory>
|
|
549
539
|
<pomIncludes>
|
|
550
540
|
<pomInclude>*/pom.xml</pomInclude>
|
|
551
541
|
</pomIncludes>
|
|
552
542
|
<streamLogs>true</streamLogs>
|
|
553
543
|
<properties>
|
|
554
544
|
<jruby.versions>${jruby.versions}</jruby.versions>
|
|
555
|
-
<jruby.modes>${jruby.modes}</jruby.modes>
|
|
556
545
|
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
|
557
546
|
<bc.versions>${bc.versions}</bc.versions>
|
|
558
547
|
<runit.dir>${runit.dir}</runit.dir>
|
|
@@ -564,7 +553,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
564
553
|
</plugins>
|
|
565
554
|
</build>
|
|
566
555
|
<properties>
|
|
567
|
-
<bc.versions>1.
|
|
556
|
+
<bc.versions>1.80,1.81,1.82,1.83,1.84,1.85</bc.versions>
|
|
568
557
|
<jruby.version>9.4.8.0</jruby.version>
|
|
569
558
|
<jruby.versions>9.4.8.0</jruby.versions>
|
|
570
559
|
</properties>
|
|
@@ -583,14 +572,13 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
583
572
|
<goal>run</goal>
|
|
584
573
|
</goals>
|
|
585
574
|
<configuration>
|
|
586
|
-
<projectsDirectory>
|
|
575
|
+
<projectsDirectory>src/it</projectsDirectory>
|
|
587
576
|
<pomIncludes>
|
|
588
577
|
<pomInclude>*/pom.xml</pomInclude>
|
|
589
578
|
</pomIncludes>
|
|
590
579
|
<streamLogs>true</streamLogs>
|
|
591
580
|
<properties>
|
|
592
581
|
<jruby.versions>${jruby.versions}</jruby.versions>
|
|
593
|
-
<jruby.modes>${jruby.modes}</jruby.modes>
|
|
594
582
|
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
|
595
583
|
<bc.versions>${bc.versions}</bc.versions>
|
|
596
584
|
<runit.dir>${runit.dir}</runit.dir>
|
|
@@ -602,13 +590,198 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
602
590
|
</plugins>
|
|
603
591
|
</build>
|
|
604
592
|
<properties>
|
|
605
|
-
<bc.versions>1.
|
|
593
|
+
<bc.versions>1.80,1.81,1.82,1.83,1.84,1.85</bc.versions>
|
|
606
594
|
<jruby.version>9.4.14.0</jruby.version>
|
|
607
595
|
<jruby.versions>9.4.14.0</jruby.versions>
|
|
608
596
|
</properties>
|
|
609
597
|
</profile>
|
|
610
598
|
<profile>
|
|
611
|
-
<id>test-
|
|
599
|
+
<id>test-9.4.15.0</id>
|
|
600
|
+
<build>
|
|
601
|
+
<plugins>
|
|
602
|
+
<plugin>
|
|
603
|
+
<artifactId>maven-invoker-plugin</artifactId>
|
|
604
|
+
<version>3.8.1</version>
|
|
605
|
+
<executions>
|
|
606
|
+
<execution>
|
|
607
|
+
<goals>
|
|
608
|
+
<goal>install</goal>
|
|
609
|
+
<goal>run</goal>
|
|
610
|
+
</goals>
|
|
611
|
+
<configuration>
|
|
612
|
+
<projectsDirectory>src/it</projectsDirectory>
|
|
613
|
+
<pomIncludes>
|
|
614
|
+
<pomInclude>*/pom.xml</pomInclude>
|
|
615
|
+
</pomIncludes>
|
|
616
|
+
<streamLogs>true</streamLogs>
|
|
617
|
+
<properties>
|
|
618
|
+
<jruby.versions>${jruby.versions}</jruby.versions>
|
|
619
|
+
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
|
620
|
+
<bc.versions>${bc.versions}</bc.versions>
|
|
621
|
+
<runit.dir>${runit.dir}</runit.dir>
|
|
622
|
+
</properties>
|
|
623
|
+
</configuration>
|
|
624
|
+
</execution>
|
|
625
|
+
</executions>
|
|
626
|
+
</plugin>
|
|
627
|
+
</plugins>
|
|
628
|
+
</build>
|
|
629
|
+
<properties>
|
|
630
|
+
<bc.versions>1.80,1.81,1.82,1.83,1.84,1.85</bc.versions>
|
|
631
|
+
<jruby.version>9.4.15.0</jruby.version>
|
|
632
|
+
<jruby.versions>9.4.15.0</jruby.versions>
|
|
633
|
+
</properties>
|
|
634
|
+
</profile>
|
|
635
|
+
<profile>
|
|
636
|
+
<id>test-9.4.16.0</id>
|
|
637
|
+
<build>
|
|
638
|
+
<plugins>
|
|
639
|
+
<plugin>
|
|
640
|
+
<artifactId>maven-invoker-plugin</artifactId>
|
|
641
|
+
<version>3.8.1</version>
|
|
642
|
+
<executions>
|
|
643
|
+
<execution>
|
|
644
|
+
<goals>
|
|
645
|
+
<goal>install</goal>
|
|
646
|
+
<goal>run</goal>
|
|
647
|
+
</goals>
|
|
648
|
+
<configuration>
|
|
649
|
+
<projectsDirectory>src/it</projectsDirectory>
|
|
650
|
+
<pomIncludes>
|
|
651
|
+
<pomInclude>*/pom.xml</pomInclude>
|
|
652
|
+
</pomIncludes>
|
|
653
|
+
<streamLogs>true</streamLogs>
|
|
654
|
+
<properties>
|
|
655
|
+
<jruby.versions>${jruby.versions}</jruby.versions>
|
|
656
|
+
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
|
657
|
+
<bc.versions>${bc.versions}</bc.versions>
|
|
658
|
+
<runit.dir>${runit.dir}</runit.dir>
|
|
659
|
+
</properties>
|
|
660
|
+
</configuration>
|
|
661
|
+
</execution>
|
|
662
|
+
</executions>
|
|
663
|
+
</plugin>
|
|
664
|
+
</plugins>
|
|
665
|
+
</build>
|
|
666
|
+
<properties>
|
|
667
|
+
<bc.versions>1.80,1.81,1.82,1.83,1.84,1.85</bc.versions>
|
|
668
|
+
<jruby.version>9.4.16.0</jruby.version>
|
|
669
|
+
<jruby.versions>9.4.16.0</jruby.versions>
|
|
670
|
+
</properties>
|
|
671
|
+
</profile>
|
|
672
|
+
<profile>
|
|
673
|
+
<id>test-10.0.1.0</id>
|
|
674
|
+
<build>
|
|
675
|
+
<plugins>
|
|
676
|
+
<plugin>
|
|
677
|
+
<artifactId>maven-invoker-plugin</artifactId>
|
|
678
|
+
<version>3.8.1</version>
|
|
679
|
+
<executions>
|
|
680
|
+
<execution>
|
|
681
|
+
<goals>
|
|
682
|
+
<goal>install</goal>
|
|
683
|
+
<goal>run</goal>
|
|
684
|
+
</goals>
|
|
685
|
+
<configuration>
|
|
686
|
+
<projectsDirectory>src/it</projectsDirectory>
|
|
687
|
+
<pomIncludes>
|
|
688
|
+
<pomInclude>*/pom.xml</pomInclude>
|
|
689
|
+
</pomIncludes>
|
|
690
|
+
<streamLogs>true</streamLogs>
|
|
691
|
+
<properties>
|
|
692
|
+
<jruby.versions>${jruby.versions}</jruby.versions>
|
|
693
|
+
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
|
694
|
+
<bc.versions>${bc.versions}</bc.versions>
|
|
695
|
+
<runit.dir>${runit.dir}</runit.dir>
|
|
696
|
+
</properties>
|
|
697
|
+
</configuration>
|
|
698
|
+
</execution>
|
|
699
|
+
</executions>
|
|
700
|
+
</plugin>
|
|
701
|
+
</plugins>
|
|
702
|
+
</build>
|
|
703
|
+
<properties>
|
|
704
|
+
<bc.versions>1.80,1.81,1.82,1.83,1.84,1.85</bc.versions>
|
|
705
|
+
<jruby.version>10.0.1.0</jruby.version>
|
|
706
|
+
<jruby.versions>10.0.1.0</jruby.versions>
|
|
707
|
+
</properties>
|
|
708
|
+
</profile>
|
|
709
|
+
<profile>
|
|
710
|
+
<id>test-10.0.3.0</id>
|
|
711
|
+
<build>
|
|
712
|
+
<plugins>
|
|
713
|
+
<plugin>
|
|
714
|
+
<artifactId>maven-invoker-plugin</artifactId>
|
|
715
|
+
<version>3.8.1</version>
|
|
716
|
+
<executions>
|
|
717
|
+
<execution>
|
|
718
|
+
<goals>
|
|
719
|
+
<goal>install</goal>
|
|
720
|
+
<goal>run</goal>
|
|
721
|
+
</goals>
|
|
722
|
+
<configuration>
|
|
723
|
+
<projectsDirectory>src/it</projectsDirectory>
|
|
724
|
+
<pomIncludes>
|
|
725
|
+
<pomInclude>*/pom.xml</pomInclude>
|
|
726
|
+
</pomIncludes>
|
|
727
|
+
<streamLogs>true</streamLogs>
|
|
728
|
+
<properties>
|
|
729
|
+
<jruby.versions>${jruby.versions}</jruby.versions>
|
|
730
|
+
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
|
731
|
+
<bc.versions>${bc.versions}</bc.versions>
|
|
732
|
+
<runit.dir>${runit.dir}</runit.dir>
|
|
733
|
+
</properties>
|
|
734
|
+
</configuration>
|
|
735
|
+
</execution>
|
|
736
|
+
</executions>
|
|
737
|
+
</plugin>
|
|
738
|
+
</plugins>
|
|
739
|
+
</build>
|
|
740
|
+
<properties>
|
|
741
|
+
<bc.versions>1.80,1.81,1.82,1.83,1.84,1.85</bc.versions>
|
|
742
|
+
<jruby.version>10.0.3.0</jruby.version>
|
|
743
|
+
<jruby.versions>10.0.3.0</jruby.versions>
|
|
744
|
+
</properties>
|
|
745
|
+
</profile>
|
|
746
|
+
<profile>
|
|
747
|
+
<id>test-10.0.5.0</id>
|
|
748
|
+
<build>
|
|
749
|
+
<plugins>
|
|
750
|
+
<plugin>
|
|
751
|
+
<artifactId>maven-invoker-plugin</artifactId>
|
|
752
|
+
<version>3.8.1</version>
|
|
753
|
+
<executions>
|
|
754
|
+
<execution>
|
|
755
|
+
<goals>
|
|
756
|
+
<goal>install</goal>
|
|
757
|
+
<goal>run</goal>
|
|
758
|
+
</goals>
|
|
759
|
+
<configuration>
|
|
760
|
+
<projectsDirectory>src/it</projectsDirectory>
|
|
761
|
+
<pomIncludes>
|
|
762
|
+
<pomInclude>*/pom.xml</pomInclude>
|
|
763
|
+
</pomIncludes>
|
|
764
|
+
<streamLogs>true</streamLogs>
|
|
765
|
+
<properties>
|
|
766
|
+
<jruby.versions>${jruby.versions}</jruby.versions>
|
|
767
|
+
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
|
768
|
+
<bc.versions>${bc.versions}</bc.versions>
|
|
769
|
+
<runit.dir>${runit.dir}</runit.dir>
|
|
770
|
+
</properties>
|
|
771
|
+
</configuration>
|
|
772
|
+
</execution>
|
|
773
|
+
</executions>
|
|
774
|
+
</plugin>
|
|
775
|
+
</plugins>
|
|
776
|
+
</build>
|
|
777
|
+
<properties>
|
|
778
|
+
<bc.versions>1.80,1.81,1.82,1.83,1.84,1.85</bc.versions>
|
|
779
|
+
<jruby.version>10.0.5.0</jruby.version>
|
|
780
|
+
<jruby.versions>10.0.5.0</jruby.versions>
|
|
781
|
+
</properties>
|
|
782
|
+
</profile>
|
|
783
|
+
<profile>
|
|
784
|
+
<id>test-10.0.6.0</id>
|
|
612
785
|
<build>
|
|
613
786
|
<plugins>
|
|
614
787
|
<plugin>
|
|
@@ -621,14 +794,13 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
621
794
|
<goal>run</goal>
|
|
622
795
|
</goals>
|
|
623
796
|
<configuration>
|
|
624
|
-
<projectsDirectory>
|
|
797
|
+
<projectsDirectory>src/it</projectsDirectory>
|
|
625
798
|
<pomIncludes>
|
|
626
799
|
<pomInclude>*/pom.xml</pomInclude>
|
|
627
800
|
</pomIncludes>
|
|
628
801
|
<streamLogs>true</streamLogs>
|
|
629
802
|
<properties>
|
|
630
803
|
<jruby.versions>${jruby.versions}</jruby.versions>
|
|
631
|
-
<jruby.modes>${jruby.modes}</jruby.modes>
|
|
632
804
|
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
|
633
805
|
<bc.versions>${bc.versions}</bc.versions>
|
|
634
806
|
<runit.dir>${runit.dir}</runit.dir>
|
|
@@ -640,9 +812,9 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
640
812
|
</plugins>
|
|
641
813
|
</build>
|
|
642
814
|
<properties>
|
|
643
|
-
<bc.versions>1.
|
|
644
|
-
<jruby.version>10.0.
|
|
645
|
-
<jruby.versions>10.0.
|
|
815
|
+
<bc.versions>1.80,1.81,1.82,1.83,1.84,1.85</bc.versions>
|
|
816
|
+
<jruby.version>10.0.6.0</jruby.version>
|
|
817
|
+
<jruby.versions>10.0.6.0</jruby.versions>
|
|
646
818
|
</properties>
|
|
647
819
|
</profile>
|
|
648
820
|
<profile>
|
|
@@ -664,5 +836,381 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
664
836
|
</plugins>
|
|
665
837
|
</build>
|
|
666
838
|
</profile>
|
|
839
|
+
<profile>
|
|
840
|
+
<id>jar-release</id>
|
|
841
|
+
<build>
|
|
842
|
+
<plugins>
|
|
843
|
+
<plugin>
|
|
844
|
+
<artifactId>maven-resources-plugin</artifactId>
|
|
845
|
+
<version>3.3.1</version>
|
|
846
|
+
<executions>
|
|
847
|
+
<execution>
|
|
848
|
+
<id>jar-release-classes</id>
|
|
849
|
+
<phase>prepare-package</phase>
|
|
850
|
+
<goals>
|
|
851
|
+
<goal>copy-resources</goal>
|
|
852
|
+
</goals>
|
|
853
|
+
<configuration>
|
|
854
|
+
<outputDirectory>${project.build.directory}/jar-release</outputDirectory>
|
|
855
|
+
<resources>
|
|
856
|
+
<resource>
|
|
857
|
+
<directory>${project.build.outputDirectory}</directory>
|
|
858
|
+
</resource>
|
|
859
|
+
</resources>
|
|
860
|
+
</configuration>
|
|
861
|
+
</execution>
|
|
862
|
+
<execution>
|
|
863
|
+
<id>jar-release-lib</id>
|
|
864
|
+
<phase>prepare-package</phase>
|
|
865
|
+
<goals>
|
|
866
|
+
<goal>copy-resources</goal>
|
|
867
|
+
</goals>
|
|
868
|
+
<configuration>
|
|
869
|
+
<outputDirectory>${project.build.directory}/jar-release</outputDirectory>
|
|
870
|
+
<resources>
|
|
871
|
+
<resource>
|
|
872
|
+
<directory>lib</directory>
|
|
873
|
+
<includes>
|
|
874
|
+
<include>jopenssl/load.rb</include>
|
|
875
|
+
<include>jopenssl/version.rb</include>
|
|
876
|
+
<include>jruby-openssl.rb</include>
|
|
877
|
+
<include>openssl.rb</include>
|
|
878
|
+
<include>openssl/bn.rb</include>
|
|
879
|
+
<include>openssl/buffering.rb</include>
|
|
880
|
+
<include>openssl/cipher.rb</include>
|
|
881
|
+
<include>openssl/config.rb</include>
|
|
882
|
+
<include>openssl/digest.rb</include>
|
|
883
|
+
<include>openssl/hmac.rb</include>
|
|
884
|
+
<include>openssl/marshal.rb</include>
|
|
885
|
+
<include>openssl/pkcs5.rb</include>
|
|
886
|
+
<include>openssl/pkey.rb</include>
|
|
887
|
+
<include>openssl/ssl.rb</include>
|
|
888
|
+
<include>openssl/x509.rb</include>
|
|
889
|
+
</includes>
|
|
890
|
+
</resource>
|
|
891
|
+
</resources>
|
|
892
|
+
</configuration>
|
|
893
|
+
</execution>
|
|
894
|
+
<execution>
|
|
895
|
+
<id>jar-release-sources</id>
|
|
896
|
+
<phase>prepare-package</phase>
|
|
897
|
+
<goals>
|
|
898
|
+
<goal>copy-resources</goal>
|
|
899
|
+
</goals>
|
|
900
|
+
<configuration>
|
|
901
|
+
<outputDirectory>${project.build.directory}/jar-release-sources</outputDirectory>
|
|
902
|
+
<resources>
|
|
903
|
+
<resource>
|
|
904
|
+
<directory>src/main/java</directory>
|
|
905
|
+
<includes>
|
|
906
|
+
<include>org/jruby/ext/openssl/ASN1.java</include>
|
|
907
|
+
<include>org/jruby/ext/openssl/BCSSLSupport.java</include>
|
|
908
|
+
<include>org/jruby/ext/openssl/BN.java</include>
|
|
909
|
+
<include>org/jruby/ext/openssl/Cipher.java</include>
|
|
910
|
+
<include>org/jruby/ext/openssl/CipherStrings.java</include>
|
|
911
|
+
<include>org/jruby/ext/openssl/Digest.java</include>
|
|
912
|
+
<include>org/jruby/ext/openssl/ExtConfig.java</include>
|
|
913
|
+
<include>org/jruby/ext/openssl/HMAC.java</include>
|
|
914
|
+
<include>org/jruby/ext/openssl/KDF.java</include>
|
|
915
|
+
<include>org/jruby/ext/openssl/NetscapeSPKI.java</include>
|
|
916
|
+
<include>org/jruby/ext/openssl/OCSP.java</include>
|
|
917
|
+
<include>org/jruby/ext/openssl/OCSPBasicResponse.java</include>
|
|
918
|
+
<include>org/jruby/ext/openssl/OCSPCertificateId.java</include>
|
|
919
|
+
<include>org/jruby/ext/openssl/OCSPRequest.java</include>
|
|
920
|
+
<include>org/jruby/ext/openssl/OCSPResponse.java</include>
|
|
921
|
+
<include>org/jruby/ext/openssl/OCSPSingleResponse.java</include>
|
|
922
|
+
<include>org/jruby/ext/openssl/ObjectSupport.java</include>
|
|
923
|
+
<include>org/jruby/ext/openssl/OpenSSL.java</include>
|
|
924
|
+
<include>org/jruby/ext/openssl/PKCS12.java</include>
|
|
925
|
+
<include>org/jruby/ext/openssl/PKCS5.java</include>
|
|
926
|
+
<include>org/jruby/ext/openssl/PKCS7.java</include>
|
|
927
|
+
<include>org/jruby/ext/openssl/PKey.java</include>
|
|
928
|
+
<include>org/jruby/ext/openssl/PKeyDH.java</include>
|
|
929
|
+
<include>org/jruby/ext/openssl/PKeyDSA.java</include>
|
|
930
|
+
<include>org/jruby/ext/openssl/PKeyEC.java</include>
|
|
931
|
+
<include>org/jruby/ext/openssl/PKeyEdDSA.java</include>
|
|
932
|
+
<include>org/jruby/ext/openssl/PKeyHMAC.java</include>
|
|
933
|
+
<include>org/jruby/ext/openssl/PKeyRSA.java</include>
|
|
934
|
+
<include>org/jruby/ext/openssl/Random.java</include>
|
|
935
|
+
<include>org/jruby/ext/openssl/SSL.java</include>
|
|
936
|
+
<include>org/jruby/ext/openssl/SSLContext.java</include>
|
|
937
|
+
<include>org/jruby/ext/openssl/SSLSession.java</include>
|
|
938
|
+
<include>org/jruby/ext/openssl/SSLSocket.java</include>
|
|
939
|
+
<include>org/jruby/ext/openssl/SecurityHelper.java</include>
|
|
940
|
+
<include>org/jruby/ext/openssl/SimpleSecretKey.java</include>
|
|
941
|
+
<include>org/jruby/ext/openssl/StringHelper.java</include>
|
|
942
|
+
<include>org/jruby/ext/openssl/X509.java</include>
|
|
943
|
+
<include>org/jruby/ext/openssl/X509Attribute.java</include>
|
|
944
|
+
<include>org/jruby/ext/openssl/X509CRL.java</include>
|
|
945
|
+
<include>org/jruby/ext/openssl/X509Cert.java</include>
|
|
946
|
+
<include>org/jruby/ext/openssl/X509Extension.java</include>
|
|
947
|
+
<include>org/jruby/ext/openssl/X509ExtensionFactory.java</include>
|
|
948
|
+
<include>org/jruby/ext/openssl/X509Name.java</include>
|
|
949
|
+
<include>org/jruby/ext/openssl/X509Request.java</include>
|
|
950
|
+
<include>org/jruby/ext/openssl/X509Revoked.java</include>
|
|
951
|
+
<include>org/jruby/ext/openssl/X509Store.java</include>
|
|
952
|
+
<include>org/jruby/ext/openssl/X509StoreContext.java</include>
|
|
953
|
+
<include>org/jruby/ext/openssl/impl/ASN1Registry.java</include>
|
|
954
|
+
<include>org/jruby/ext/openssl/impl/ApplicationSpecific.java</include>
|
|
955
|
+
<include>org/jruby/ext/openssl/impl/Attribute.java</include>
|
|
956
|
+
<include>org/jruby/ext/openssl/impl/BIO.java</include>
|
|
957
|
+
<include>org/jruby/ext/openssl/impl/BIOFilter.java</include>
|
|
958
|
+
<include>org/jruby/ext/openssl/impl/Base64.java</include>
|
|
959
|
+
<include>org/jruby/ext/openssl/impl/Base64BIOFilter.java</include>
|
|
960
|
+
<include>org/jruby/ext/openssl/impl/CipherBIOFilter.java</include>
|
|
961
|
+
<include>org/jruby/ext/openssl/impl/CipherSpec.java</include>
|
|
962
|
+
<include>org/jruby/ext/openssl/impl/Digest.java</include>
|
|
963
|
+
<include>org/jruby/ext/openssl/impl/ECPrivateKeyWithName.java</include>
|
|
964
|
+
<include>org/jruby/ext/openssl/impl/EVP.java</include>
|
|
965
|
+
<include>org/jruby/ext/openssl/impl/EncContent.java</include>
|
|
966
|
+
<include>org/jruby/ext/openssl/impl/Encrypt.java</include>
|
|
967
|
+
<include>org/jruby/ext/openssl/impl/Envelope.java</include>
|
|
968
|
+
<include>org/jruby/ext/openssl/impl/IssuerAndSerial.java</include>
|
|
969
|
+
<include>org/jruby/ext/openssl/impl/MemBIO.java</include>
|
|
970
|
+
<include>org/jruby/ext/openssl/impl/MessageDigestBIOFilter.java</include>
|
|
971
|
+
<include>org/jruby/ext/openssl/impl/Mime.java</include>
|
|
972
|
+
<include>org/jruby/ext/openssl/impl/MimeHeader.java</include>
|
|
973
|
+
<include>org/jruby/ext/openssl/impl/MimeParam.java</include>
|
|
974
|
+
<include>org/jruby/ext/openssl/impl/NetscapeCertRequest.java</include>
|
|
975
|
+
<include>org/jruby/ext/openssl/impl/NotVerifiedPKCS7Exception.java</include>
|
|
976
|
+
<include>org/jruby/ext/openssl/impl/NullSinkBIO.java</include>
|
|
977
|
+
<include>org/jruby/ext/openssl/impl/OpenSSLKDF.java</include>
|
|
978
|
+
<include>org/jruby/ext/openssl/impl/PKCS10Request.java</include>
|
|
979
|
+
<include>org/jruby/ext/openssl/impl/PKCS7.java</include>
|
|
980
|
+
<include>org/jruby/ext/openssl/impl/PKCS7Data.java</include>
|
|
981
|
+
<include>org/jruby/ext/openssl/impl/PKCS7DataData.java</include>
|
|
982
|
+
<include>org/jruby/ext/openssl/impl/PKCS7DataDigest.java</include>
|
|
983
|
+
<include>org/jruby/ext/openssl/impl/PKCS7DataEncrypted.java</include>
|
|
984
|
+
<include>org/jruby/ext/openssl/impl/PKCS7DataEnveloped.java</include>
|
|
985
|
+
<include>org/jruby/ext/openssl/impl/PKCS7DataSigned.java</include>
|
|
986
|
+
<include>org/jruby/ext/openssl/impl/PKCS7DataSignedAndEnveloped.java</include>
|
|
987
|
+
<include>org/jruby/ext/openssl/impl/PKCS7Exception.java</include>
|
|
988
|
+
<include>org/jruby/ext/openssl/impl/PKey.java</include>
|
|
989
|
+
<include>org/jruby/ext/openssl/impl/RecipInfo.java</include>
|
|
990
|
+
<include>org/jruby/ext/openssl/impl/SMIME.java</include>
|
|
991
|
+
<include>org/jruby/ext/openssl/impl/SignEnvelope.java</include>
|
|
992
|
+
<include>org/jruby/ext/openssl/impl/Signed.java</include>
|
|
993
|
+
<include>org/jruby/ext/openssl/impl/SignerInfoWithPkey.java</include>
|
|
994
|
+
<include>org/jruby/ext/openssl/impl/TypeDiscriminating.java</include>
|
|
995
|
+
<include>org/jruby/ext/openssl/impl/pem/MiscPEMGeneratorHelper.java</include>
|
|
996
|
+
<include>org/jruby/ext/openssl/impl/pem/PEMUtilities.java</include>
|
|
997
|
+
<include>org/jruby/ext/openssl/log/DefaultLogger.java</include>
|
|
998
|
+
<include>org/jruby/ext/openssl/log/JULLogger.java</include>
|
|
999
|
+
<include>org/jruby/ext/openssl/log/Logger.java</include>
|
|
1000
|
+
<include>org/jruby/ext/openssl/log/LoggingSupport.java</include>
|
|
1001
|
+
<include>org/jruby/ext/openssl/shim/ASN1Shim.java</include>
|
|
1002
|
+
<include>org/jruby/ext/openssl/shim/CipherShim.java</include>
|
|
1003
|
+
<include>org/jruby/ext/openssl/shim/ErrorShim.java</include>
|
|
1004
|
+
<include>org/jruby/ext/openssl/shim/PKeyShim.java</include>
|
|
1005
|
+
<include>org/jruby/ext/openssl/util/ByteArrayOutputStream.java</include>
|
|
1006
|
+
<include>org/jruby/ext/openssl/util/Cache.java</include>
|
|
1007
|
+
<include>org/jruby/ext/openssl/util/ExceptionUtil.java</include>
|
|
1008
|
+
<include>org/jruby/ext/openssl/util/PEMGenerator.java</include>
|
|
1009
|
+
<include>org/jruby/ext/openssl/util/RubySupport.java</include>
|
|
1010
|
+
<include>org/jruby/ext/openssl/x509store/CRL.java</include>
|
|
1011
|
+
<include>org/jruby/ext/openssl/x509store/Certificate.java</include>
|
|
1012
|
+
<include>org/jruby/ext/openssl/x509store/CertificateFile.java</include>
|
|
1013
|
+
<include>org/jruby/ext/openssl/x509store/CertificateHashDir.java</include>
|
|
1014
|
+
<include>org/jruby/ext/openssl/x509store/Function0.java</include>
|
|
1015
|
+
<include>org/jruby/ext/openssl/x509store/Function1.java</include>
|
|
1016
|
+
<include>org/jruby/ext/openssl/x509store/Function2.java</include>
|
|
1017
|
+
<include>org/jruby/ext/openssl/x509store/Function3.java</include>
|
|
1018
|
+
<include>org/jruby/ext/openssl/x509store/Function4.java</include>
|
|
1019
|
+
<include>org/jruby/ext/openssl/x509store/Function5.java</include>
|
|
1020
|
+
<include>org/jruby/ext/openssl/x509store/Lookup.java</include>
|
|
1021
|
+
<include>org/jruby/ext/openssl/x509store/LookupMethod.java</include>
|
|
1022
|
+
<include>org/jruby/ext/openssl/x509store/Name.java</include>
|
|
1023
|
+
<include>org/jruby/ext/openssl/x509store/PEMInputOutput.java</include>
|
|
1024
|
+
<include>org/jruby/ext/openssl/x509store/PKey.java</include>
|
|
1025
|
+
<include>org/jruby/ext/openssl/x509store/PolicyTree.java</include>
|
|
1026
|
+
<include>org/jruby/ext/openssl/x509store/Purpose.java</include>
|
|
1027
|
+
<include>org/jruby/ext/openssl/x509store/Store.java</include>
|
|
1028
|
+
<include>org/jruby/ext/openssl/x509store/StoreContext.java</include>
|
|
1029
|
+
<include>org/jruby/ext/openssl/x509store/Trust.java</include>
|
|
1030
|
+
<include>org/jruby/ext/openssl/x509store/VerifyParameter.java</include>
|
|
1031
|
+
<include>org/jruby/ext/openssl/x509store/X509Aux.java</include>
|
|
1032
|
+
<include>org/jruby/ext/openssl/x509store/X509AuxCertificate.java</include>
|
|
1033
|
+
<include>org/jruby/ext/openssl/x509store/X509Error.java</include>
|
|
1034
|
+
<include>org/jruby/ext/openssl/x509store/X509Object.java</include>
|
|
1035
|
+
<include>org/jruby/ext/openssl/x509store/X509Utils.java</include>
|
|
1036
|
+
</includes>
|
|
1037
|
+
</resource>
|
|
1038
|
+
</resources>
|
|
1039
|
+
</configuration>
|
|
1040
|
+
</execution>
|
|
1041
|
+
<execution>
|
|
1042
|
+
<id>jar-release-sources-lib</id>
|
|
1043
|
+
<phase>prepare-package</phase>
|
|
1044
|
+
<goals>
|
|
1045
|
+
<goal>copy-resources</goal>
|
|
1046
|
+
</goals>
|
|
1047
|
+
<configuration>
|
|
1048
|
+
<outputDirectory>${project.build.directory}/jar-release-sources</outputDirectory>
|
|
1049
|
+
<resources>
|
|
1050
|
+
<resource>
|
|
1051
|
+
<directory>lib</directory>
|
|
1052
|
+
<includes>
|
|
1053
|
+
<include>jopenssl/load.rb</include>
|
|
1054
|
+
<include>jopenssl/version.rb</include>
|
|
1055
|
+
<include>jruby-openssl.rb</include>
|
|
1056
|
+
<include>openssl.rb</include>
|
|
1057
|
+
<include>openssl/bn.rb</include>
|
|
1058
|
+
<include>openssl/buffering.rb</include>
|
|
1059
|
+
<include>openssl/cipher.rb</include>
|
|
1060
|
+
<include>openssl/config.rb</include>
|
|
1061
|
+
<include>openssl/digest.rb</include>
|
|
1062
|
+
<include>openssl/hmac.rb</include>
|
|
1063
|
+
<include>openssl/marshal.rb</include>
|
|
1064
|
+
<include>openssl/pkcs5.rb</include>
|
|
1065
|
+
<include>openssl/pkey.rb</include>
|
|
1066
|
+
<include>openssl/ssl.rb</include>
|
|
1067
|
+
<include>openssl/x509.rb</include>
|
|
1068
|
+
</includes>
|
|
1069
|
+
</resource>
|
|
1070
|
+
</resources>
|
|
1071
|
+
</configuration>
|
|
1072
|
+
</execution>
|
|
1073
|
+
<execution>
|
|
1074
|
+
<id>jar-release-sources-module</id>
|
|
1075
|
+
<phase>prepare-package</phase>
|
|
1076
|
+
<goals>
|
|
1077
|
+
<goal>copy-resources</goal>
|
|
1078
|
+
</goals>
|
|
1079
|
+
<configuration>
|
|
1080
|
+
<outputDirectory>${project.build.directory}/jar-release-sources</outputDirectory>
|
|
1081
|
+
<resources>
|
|
1082
|
+
<resource>
|
|
1083
|
+
<directory>src/main/module</directory>
|
|
1084
|
+
<includes>
|
|
1085
|
+
<include>module-info.java</include>
|
|
1086
|
+
</includes>
|
|
1087
|
+
</resource>
|
|
1088
|
+
</resources>
|
|
1089
|
+
</configuration>
|
|
1090
|
+
</execution>
|
|
1091
|
+
</executions>
|
|
1092
|
+
</plugin>
|
|
1093
|
+
<plugin>
|
|
1094
|
+
<artifactId>maven-dependency-plugin</artifactId>
|
|
1095
|
+
<executions>
|
|
1096
|
+
<execution>
|
|
1097
|
+
<id>jar-release-modpath-bc</id>
|
|
1098
|
+
<phase>generate-resources</phase>
|
|
1099
|
+
<goals>
|
|
1100
|
+
<goal>copy-dependencies</goal>
|
|
1101
|
+
</goals>
|
|
1102
|
+
<configuration>
|
|
1103
|
+
<outputDirectory>${project.build.directory}/jar-release-modpath</outputDirectory>
|
|
1104
|
+
<includeGroupIds>org.bouncycastle</includeGroupIds>
|
|
1105
|
+
</configuration>
|
|
1106
|
+
</execution>
|
|
1107
|
+
<execution>
|
|
1108
|
+
<id>jar-release-modpath-jruby</id>
|
|
1109
|
+
<phase>generate-resources</phase>
|
|
1110
|
+
<goals>
|
|
1111
|
+
<goal>copy</goal>
|
|
1112
|
+
</goals>
|
|
1113
|
+
<configuration>
|
|
1114
|
+
<outputDirectory>${project.build.directory}/jar-release-modpath</outputDirectory>
|
|
1115
|
+
<artifactItems>
|
|
1116
|
+
<artifactItem>
|
|
1117
|
+
<groupId>org.jruby</groupId>
|
|
1118
|
+
<artifactId>jruby-core</artifactId>
|
|
1119
|
+
<version>9.4.14.0</version>
|
|
1120
|
+
</artifactItem>
|
|
1121
|
+
</artifactItems>
|
|
1122
|
+
</configuration>
|
|
1123
|
+
</execution>
|
|
1124
|
+
</executions>
|
|
1125
|
+
</plugin>
|
|
1126
|
+
<plugin>
|
|
1127
|
+
<groupId>org.codehaus.mojo</groupId>
|
|
1128
|
+
<artifactId>exec-maven-plugin</artifactId>
|
|
1129
|
+
<executions>
|
|
1130
|
+
<execution>
|
|
1131
|
+
<id>jar-release-module-info</id>
|
|
1132
|
+
<phase>process-classes</phase>
|
|
1133
|
+
<goals>
|
|
1134
|
+
<goal>exec</goal>
|
|
1135
|
+
</goals>
|
|
1136
|
+
<configuration>
|
|
1137
|
+
<executable>javac</executable>
|
|
1138
|
+
<arguments>
|
|
1139
|
+
<argument>--release</argument>
|
|
1140
|
+
<argument>9</argument>
|
|
1141
|
+
<argument>--module-path</argument>
|
|
1142
|
+
<argument>${project.build.directory}/jar-release-modpath</argument>
|
|
1143
|
+
<argument>--patch-module</argument>
|
|
1144
|
+
<argument>org.jruby.ext.openssl=${project.build.outputDirectory}</argument>
|
|
1145
|
+
<argument>-d</argument>
|
|
1146
|
+
<argument>${project.build.directory}/jar-release</argument>
|
|
1147
|
+
<argument>${basedir}/src/main/module/module-info.java</argument>
|
|
1148
|
+
</arguments>
|
|
1149
|
+
</configuration>
|
|
1150
|
+
</execution>
|
|
1151
|
+
</executions>
|
|
1152
|
+
</plugin>
|
|
1153
|
+
<plugin>
|
|
1154
|
+
<artifactId>maven-jar-plugin</artifactId>
|
|
1155
|
+
<version>3.4.1</version>
|
|
1156
|
+
<executions>
|
|
1157
|
+
<execution>
|
|
1158
|
+
<id>jar-release</id>
|
|
1159
|
+
<phase>package</phase>
|
|
1160
|
+
<goals>
|
|
1161
|
+
<goal>jar</goal>
|
|
1162
|
+
</goals>
|
|
1163
|
+
<configuration>
|
|
1164
|
+
<classesDirectory>${project.build.directory}/jar-release</classesDirectory>
|
|
1165
|
+
<outputDirectory>${project.build.directory}</outputDirectory>
|
|
1166
|
+
<finalName>${project.build.finalName}</finalName>
|
|
1167
|
+
</configuration>
|
|
1168
|
+
</execution>
|
|
1169
|
+
<execution>
|
|
1170
|
+
<id>jar-release-sources</id>
|
|
1171
|
+
<phase>package</phase>
|
|
1172
|
+
<goals>
|
|
1173
|
+
<goal>jar</goal>
|
|
1174
|
+
</goals>
|
|
1175
|
+
<configuration>
|
|
1176
|
+
<classesDirectory>${project.build.directory}/jar-release-sources</classesDirectory>
|
|
1177
|
+
<outputDirectory>${project.build.directory}</outputDirectory>
|
|
1178
|
+
<finalName>${project.build.finalName}</finalName>
|
|
1179
|
+
<classifier>sources</classifier>
|
|
1180
|
+
</configuration>
|
|
1181
|
+
</execution>
|
|
1182
|
+
</executions>
|
|
1183
|
+
</plugin>
|
|
1184
|
+
<plugin>
|
|
1185
|
+
<artifactId>maven-deploy-plugin</artifactId>
|
|
1186
|
+
<version>3.1.4</version>
|
|
1187
|
+
<executions>
|
|
1188
|
+
<execution>
|
|
1189
|
+
<id>jar-release-deploy</id>
|
|
1190
|
+
<phase>deploy</phase>
|
|
1191
|
+
<goals>
|
|
1192
|
+
<goal>deploy-file</goal>
|
|
1193
|
+
</goals>
|
|
1194
|
+
<configuration>
|
|
1195
|
+
<file>${project.build.directory}/${project.build.finalName}.jar</file>
|
|
1196
|
+
<sources>${project.build.directory}/${project.build.finalName}-sources.jar</sources>
|
|
1197
|
+
<groupId>${project.groupId}</groupId>
|
|
1198
|
+
<artifactId>${project.artifactId}</artifactId>
|
|
1199
|
+
<version>${project.version}</version>
|
|
1200
|
+
<packaging>jar</packaging>
|
|
1201
|
+
<repositoryId>${jar-release.repositoryId}</repositoryId>
|
|
1202
|
+
<url>${jar-release.url}</url>
|
|
1203
|
+
</configuration>
|
|
1204
|
+
</execution>
|
|
1205
|
+
</executions>
|
|
1206
|
+
</plugin>
|
|
1207
|
+
</plugins>
|
|
1208
|
+
</build>
|
|
1209
|
+
<properties>
|
|
1210
|
+
<gem.deploy.skip>true</gem.deploy.skip>
|
|
1211
|
+
<jar-release.repositoryId>ossrh</jar-release.repositoryId>
|
|
1212
|
+
<jar-release.url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</jar-release.url>
|
|
1213
|
+
</properties>
|
|
1214
|
+
</profile>
|
|
667
1215
|
</profiles>
|
|
668
1216
|
</project>
|