jruby-openssl 0.9.16-java → 0.9.17-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/History.md +21 -0
- data/Mavenfile +193 -0
- data/Rakefile +10 -8
- data/integration/1.47/pom.xml +15 -0
- data/integration/1.48/pom.xml +15 -0
- data/integration/1.49/pom.xml +15 -0
- data/integration/1.50/pom.xml +15 -0
- data/integration/Mavenfile +57 -0
- data/integration/pom.xml +122 -0
- data/lib/jopenssl.jar +0 -0
- data/lib/jopenssl/version.rb +1 -1
- data/lib/openssl/pkcs12.rb +3 -6
- data/pom.xml +1004 -0
- metadata +25 -18
data/lib/jopenssl.jar
CHANGED
Binary file
|
data/lib/jopenssl/version.rb
CHANGED
data/lib/openssl/pkcs12.rb
CHANGED
@@ -5,9 +5,6 @@ module OpenSSL
|
|
5
5
|
class PKCS12Error < OpenSSLError
|
6
6
|
end
|
7
7
|
|
8
|
-
java_import java.io.StringReader
|
9
|
-
java_import java.io.StringBufferInputStream
|
10
|
-
java_import java.io.ByteArrayOutputStream
|
11
8
|
java_import 'org.jruby.ext.openssl.PEMUtils'
|
12
9
|
java_import 'org.jruby.ext.openssl.SecurityHelper'
|
13
10
|
|
@@ -27,11 +24,11 @@ module OpenSSL
|
|
27
24
|
@der = file.read
|
28
25
|
file.close
|
29
26
|
else
|
30
|
-
str.force_encoding(Encoding::ASCII_8BIT)
|
27
|
+
str.force_encoding(Encoding::ASCII_8BIT) if str.respond_to?(:force_encoding)
|
31
28
|
@der = str
|
32
29
|
end
|
33
30
|
|
34
|
-
p12_input_stream = StringBufferInputStream.new(@der)
|
31
|
+
p12_input_stream = java.io.StringBufferInputStream.new(@der)
|
35
32
|
|
36
33
|
store = SecurityHelper.getKeyStore("PKCS12")
|
37
34
|
store.load(p12_input_stream, password.to_java.to_char_array)
|
@@ -87,7 +84,7 @@ module OpenSSL
|
|
87
84
|
|
88
85
|
begin
|
89
86
|
der_bytes = PEMUtils.generatePKCS12(
|
90
|
-
StringReader.new(key.to_pem), certificates.to_java_bytes,
|
87
|
+
java.io.StringReader.new(key.to_pem), certificates.to_java_bytes,
|
91
88
|
alias_name, ( pass.nil? ? "" : pass ).to_java.to_char_array
|
92
89
|
)
|
93
90
|
rescue java.security.KeyStoreException, java.security.cert.CertificateException => e
|
data/pom.xml
ADDED
@@ -0,0 +1,1004 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!--
|
3
|
+
|
4
|
+
|
5
|
+
DO NOT MODIFIY - GENERATED CODE
|
6
|
+
|
7
|
+
|
8
|
+
-->
|
9
|
+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
10
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
11
|
+
<modelVersion>4.0.0</modelVersion>
|
12
|
+
<groupId>rubygems</groupId>
|
13
|
+
<artifactId>jruby-openssl</artifactId>
|
14
|
+
<version>0.9.17</version>
|
15
|
+
<packaging>gem</packaging>
|
16
|
+
<name>JRuby OpenSSL</name>
|
17
|
+
<description>JRuby-OpenSSL is an add-on gem for JRuby that emulates the Ruby OpenSSL native library.</description>
|
18
|
+
<url>https://github.com/jruby/jruby-openssl</url>
|
19
|
+
<licenses>
|
20
|
+
<license>
|
21
|
+
<name>EPL-1.0</name>
|
22
|
+
<url>http://opensource.org/licenses/EPL-1.0</url>
|
23
|
+
<comments>Eclipse Public License 1.0</comments>
|
24
|
+
</license>
|
25
|
+
<license>
|
26
|
+
<name>GPL-2.0</name>
|
27
|
+
<url>http://opensource.org/licenses/GPL-2.0</url>
|
28
|
+
<comments>GNU General Public License version 2.0</comments>
|
29
|
+
</license>
|
30
|
+
<license>
|
31
|
+
<name>LGPL-2.1</name>
|
32
|
+
<url>http://opensource.org/licenses/LGPL-2.1</url>
|
33
|
+
<comments>GNU Library or "Lesser" General Public License version 2.1</comments>
|
34
|
+
</license>
|
35
|
+
</licenses>
|
36
|
+
<developers>
|
37
|
+
<developer>
|
38
|
+
<name>Ola Bini</name>
|
39
|
+
<email>ola.bini@gmail.com</email>
|
40
|
+
</developer>
|
41
|
+
<developer>
|
42
|
+
<name>JRuby contributors</name>
|
43
|
+
</developer>
|
44
|
+
</developers>
|
45
|
+
<scm>
|
46
|
+
<connection>https://github.com/jruby/jruby-openssl.git</connection>
|
47
|
+
<url>https://github.com/jruby/jruby-openssl</url>
|
48
|
+
</scm>
|
49
|
+
<distributionManagement>
|
50
|
+
<repository>
|
51
|
+
<id>ossrh</id>
|
52
|
+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
53
|
+
</repository>
|
54
|
+
<snapshotRepository>
|
55
|
+
<id>ossrh</id>
|
56
|
+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
57
|
+
</snapshotRepository>
|
58
|
+
</distributionManagement>
|
59
|
+
<properties>
|
60
|
+
<bc.versions>1.54</bc.versions>
|
61
|
+
<jruby.plugins.version>1.0.10</jruby.plugins.version>
|
62
|
+
<invoker.skip>${maven.test.skip}</invoker.skip>
|
63
|
+
<jruby.version>1.7.18</jruby.version>
|
64
|
+
<runit.dir>src/test/ruby/**/test_*.rb</runit.dir>
|
65
|
+
<jruby.versions>1.7.18</jruby.versions>
|
66
|
+
<polyglot.dump.readonly>true</polyglot.dump.readonly>
|
67
|
+
<tesla.dump.pom>pom.xml</tesla.dump.pom>
|
68
|
+
<polyglot.dump.pom>pom.xml</polyglot.dump.pom>
|
69
|
+
<tesla.dump.readonly>true</tesla.dump.readonly>
|
70
|
+
<invoker.test>${bc.versions}</invoker.test>
|
71
|
+
</properties>
|
72
|
+
<dependencies>
|
73
|
+
<dependency>
|
74
|
+
<groupId>rubygems</groupId>
|
75
|
+
<artifactId>jar-dependencies</artifactId>
|
76
|
+
<version>[0.1,0.99999]</version>
|
77
|
+
<type>gem</type>
|
78
|
+
<scope>test</scope>
|
79
|
+
</dependency>
|
80
|
+
<dependency>
|
81
|
+
<groupId>rubygems</groupId>
|
82
|
+
<artifactId>mocha</artifactId>
|
83
|
+
<version>[1.1.0,1.1.99999]</version>
|
84
|
+
<type>gem</type>
|
85
|
+
<scope>test</scope>
|
86
|
+
</dependency>
|
87
|
+
<dependency>
|
88
|
+
<groupId>rubygems</groupId>
|
89
|
+
<artifactId>ruby-maven</artifactId>
|
90
|
+
<version>[3.0,3.99999]</version>
|
91
|
+
<type>gem</type>
|
92
|
+
<scope>test</scope>
|
93
|
+
</dependency>
|
94
|
+
<dependency>
|
95
|
+
<groupId>org.bouncycastle</groupId>
|
96
|
+
<artifactId>bcpkix-jdk15on</artifactId>
|
97
|
+
<version>1.54</version>
|
98
|
+
</dependency>
|
99
|
+
<dependency>
|
100
|
+
<groupId>org.bouncycastle</groupId>
|
101
|
+
<artifactId>bcprov-jdk15on</artifactId>
|
102
|
+
<version>1.54</version>
|
103
|
+
</dependency>
|
104
|
+
<dependency>
|
105
|
+
<groupId>org.jruby</groupId>
|
106
|
+
<artifactId>jruby-core</artifactId>
|
107
|
+
<version>1.7.17</version>
|
108
|
+
<scope>provided</scope>
|
109
|
+
</dependency>
|
110
|
+
<dependency>
|
111
|
+
<groupId>junit</groupId>
|
112
|
+
<artifactId>junit</artifactId>
|
113
|
+
<version>4.11</version>
|
114
|
+
<scope>test</scope>
|
115
|
+
</dependency>
|
116
|
+
</dependencies>
|
117
|
+
<repositories>
|
118
|
+
<repository>
|
119
|
+
<id>rubygems-releases</id>
|
120
|
+
<url>http://rubygems-proxy.torquebox.org/releases</url>
|
121
|
+
</repository>
|
122
|
+
<repository>
|
123
|
+
<releases>
|
124
|
+
<enabled>false</enabled>
|
125
|
+
</releases>
|
126
|
+
<snapshots>
|
127
|
+
<enabled>true</enabled>
|
128
|
+
</snapshots>
|
129
|
+
<id>sonatype</id>
|
130
|
+
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
131
|
+
</repository>
|
132
|
+
</repositories>
|
133
|
+
<build>
|
134
|
+
<extensions>
|
135
|
+
<extension>
|
136
|
+
<groupId>de.saumya.mojo</groupId>
|
137
|
+
<artifactId>gem-with-jar-extension</artifactId>
|
138
|
+
<version>${jruby.plugins.version}</version>
|
139
|
+
</extension>
|
140
|
+
</extensions>
|
141
|
+
<directory>${basedir}/pkg</directory>
|
142
|
+
<plugins>
|
143
|
+
<plugin>
|
144
|
+
<artifactId>maven-jar-plugin</artifactId>
|
145
|
+
<version>2.4</version>
|
146
|
+
<executions>
|
147
|
+
<execution>
|
148
|
+
<phase>prepare-package</phase>
|
149
|
+
<goals>
|
150
|
+
<goal>jar</goal>
|
151
|
+
</goals>
|
152
|
+
</execution>
|
153
|
+
</executions>
|
154
|
+
<configuration>
|
155
|
+
<outputDirectory>lib</outputDirectory>
|
156
|
+
<finalName>jopenssl</finalName>
|
157
|
+
</configuration>
|
158
|
+
</plugin>
|
159
|
+
<plugin>
|
160
|
+
<artifactId>maven-clean-plugin</artifactId>
|
161
|
+
<version>2.4</version>
|
162
|
+
<configuration>
|
163
|
+
<filesets>
|
164
|
+
<fileset>
|
165
|
+
<directory>lib</directory>
|
166
|
+
<includes>
|
167
|
+
<include>jopenssl.jar</include>
|
168
|
+
<include>*/**/*.jar</include>
|
169
|
+
</includes>
|
170
|
+
</fileset>
|
171
|
+
</filesets>
|
172
|
+
</configuration>
|
173
|
+
</plugin>
|
174
|
+
<plugin>
|
175
|
+
<artifactId>maven-dependency-plugin</artifactId>
|
176
|
+
<executions>
|
177
|
+
<execution>
|
178
|
+
<phase>generate-test-resources</phase>
|
179
|
+
<goals>
|
180
|
+
<goal>copy-dependencies</goal>
|
181
|
+
</goals>
|
182
|
+
<configuration>
|
183
|
+
<outputDirectory>lib</outputDirectory>
|
184
|
+
<useRepositoryLayout>true</useRepositoryLayout>
|
185
|
+
</configuration>
|
186
|
+
</execution>
|
187
|
+
</executions>
|
188
|
+
</plugin>
|
189
|
+
<plugin>
|
190
|
+
<groupId>de.saumya.mojo</groupId>
|
191
|
+
<artifactId>gem-maven-plugin</artifactId>
|
192
|
+
<version>${jruby.plugins.version}</version>
|
193
|
+
<executions>
|
194
|
+
<execution>
|
195
|
+
<id>default-initialize</id>
|
196
|
+
<configuration>
|
197
|
+
<addProjectClasspath>false</addProjectClasspath>
|
198
|
+
<libDirectory>something-which-does-not-exists</libDirectory>
|
199
|
+
</configuration>
|
200
|
+
</execution>
|
201
|
+
<execution>
|
202
|
+
<id>default-push</id>
|
203
|
+
<configuration>
|
204
|
+
<skip>true</skip>
|
205
|
+
</configuration>
|
206
|
+
</execution>
|
207
|
+
</executions>
|
208
|
+
<configuration>
|
209
|
+
<gemspec>jruby-openssl.gemspec</gemspec>
|
210
|
+
<includeDependencies>true</includeDependencies>
|
211
|
+
<useRepositoryLayout>true</useRepositoryLayout>
|
212
|
+
</configuration>
|
213
|
+
</plugin>
|
214
|
+
<plugin>
|
215
|
+
<groupId>org.codehaus.mojo</groupId>
|
216
|
+
<artifactId>exec-maven-plugin</artifactId>
|
217
|
+
<version>1.3.2</version>
|
218
|
+
<executions>
|
219
|
+
<execution>
|
220
|
+
<id>invoker-generator</id>
|
221
|
+
<phase>process-classes</phase>
|
222
|
+
<goals>
|
223
|
+
<goal>exec</goal>
|
224
|
+
</goals>
|
225
|
+
<configuration>
|
226
|
+
<executable>java</executable>
|
227
|
+
<classpathScope>compile</classpathScope>
|
228
|
+
<arguments>
|
229
|
+
<argument>-Djruby.bytecode.version=1.6</argument>
|
230
|
+
<argument>-classpath</argument>
|
231
|
+
<classpath />
|
232
|
+
<argument>org.jruby.anno.InvokerGenerator</argument>
|
233
|
+
<argument>${basedir}/target/generated-sources/annotated_classes.txt</argument>
|
234
|
+
<argument>${project.build.outputDirectory}</argument>
|
235
|
+
</arguments>
|
236
|
+
</configuration>
|
237
|
+
</execution>
|
238
|
+
</executions>
|
239
|
+
</plugin>
|
240
|
+
<plugin>
|
241
|
+
<groupId>org.codehaus.mojo</groupId>
|
242
|
+
<artifactId>build-helper-maven-plugin</artifactId>
|
243
|
+
<version>1.9</version>
|
244
|
+
<executions>
|
245
|
+
<execution>
|
246
|
+
<phase>process-classes</phase>
|
247
|
+
<goals>
|
248
|
+
<goal>add-source</goal>
|
249
|
+
</goals>
|
250
|
+
<configuration>
|
251
|
+
<sources>
|
252
|
+
<source>${basedir}/target/generated-sources</source>
|
253
|
+
</sources>
|
254
|
+
</configuration>
|
255
|
+
</execution>
|
256
|
+
</executions>
|
257
|
+
</plugin>
|
258
|
+
<plugin>
|
259
|
+
<artifactId>maven-compiler-plugin</artifactId>
|
260
|
+
<version>3.1</version>
|
261
|
+
<executions>
|
262
|
+
<execution>
|
263
|
+
<id>compile-populators</id>
|
264
|
+
<phase>process-classes</phase>
|
265
|
+
<goals>
|
266
|
+
<goal>compile</goal>
|
267
|
+
</goals>
|
268
|
+
<configuration>
|
269
|
+
<includes>
|
270
|
+
<include>org/jruby/gen/**/*.java</include>
|
271
|
+
</includes>
|
272
|
+
<optimize>true</optimize>
|
273
|
+
<compilerArgs>
|
274
|
+
<compilerArg>-XDignore.symbol.file=true</compilerArg>
|
275
|
+
</compilerArgs>
|
276
|
+
</configuration>
|
277
|
+
</execution>
|
278
|
+
</executions>
|
279
|
+
<configuration>
|
280
|
+
<source>1.6</source>
|
281
|
+
<target>1.6</target>
|
282
|
+
<encoding>UTF-8</encoding>
|
283
|
+
<debug>true</debug>
|
284
|
+
<showWarnings>true</showWarnings>
|
285
|
+
<showDeprecation>true</showDeprecation>
|
286
|
+
<generatedSourcesDirectory>${basedir}/target/generated-sources</generatedSourcesDirectory>
|
287
|
+
<annotationProcessors>
|
288
|
+
<annotationProcessor>org.jruby.anno.AnnotationBinder</annotationProcessor>
|
289
|
+
</annotationProcessors>
|
290
|
+
<compilerArgs>
|
291
|
+
<compilerArg>-XDignore.symbol.file=true</compilerArg>
|
292
|
+
</compilerArgs>
|
293
|
+
</configuration>
|
294
|
+
</plugin>
|
295
|
+
<plugin>
|
296
|
+
<artifactId>maven-clean-plugin</artifactId>
|
297
|
+
<executions>
|
298
|
+
<execution>
|
299
|
+
<id>default-clean</id>
|
300
|
+
<phase>clean</phase>
|
301
|
+
<goals>
|
302
|
+
<goal>clean</goal>
|
303
|
+
</goals>
|
304
|
+
<configuration>
|
305
|
+
<filesets>
|
306
|
+
<fileset>
|
307
|
+
<directory>lib</directory>
|
308
|
+
<includes>
|
309
|
+
<include>jopenssl.jar</include>
|
310
|
+
</includes>
|
311
|
+
</fileset>
|
312
|
+
<fileset>
|
313
|
+
<directory>lib/org</directory>
|
314
|
+
</fileset>
|
315
|
+
<fileset>
|
316
|
+
<directory>target</directory>
|
317
|
+
<includes>
|
318
|
+
<include>*</include>
|
319
|
+
</includes>
|
320
|
+
</fileset>
|
321
|
+
</filesets>
|
322
|
+
<failOnError>false</failOnError>
|
323
|
+
</configuration>
|
324
|
+
</execution>
|
325
|
+
</executions>
|
326
|
+
</plugin>
|
327
|
+
<plugin>
|
328
|
+
<artifactId>maven-deploy-plugin</artifactId>
|
329
|
+
<version>2.8.1</version>
|
330
|
+
<executions>
|
331
|
+
<execution>
|
332
|
+
<goals>
|
333
|
+
<goal>deploy</goal>
|
334
|
+
</goals>
|
335
|
+
<configuration>
|
336
|
+
<skip>false</skip>
|
337
|
+
</configuration>
|
338
|
+
</execution>
|
339
|
+
</executions>
|
340
|
+
</plugin>
|
341
|
+
<plugin>
|
342
|
+
<artifactId>maven-dependency-plugin</artifactId>
|
343
|
+
<executions>
|
344
|
+
<execution>
|
345
|
+
<phase>generate-test-resources</phase>
|
346
|
+
<goals>
|
347
|
+
<goal>copy-dependencies</goal>
|
348
|
+
</goals>
|
349
|
+
<configuration>
|
350
|
+
<outputDirectory>${basedir}/lib</outputDirectory>
|
351
|
+
<useRepositoryLayout>true</useRepositoryLayout>
|
352
|
+
<includeGroupIds>org.bouncycastle</includeGroupIds>
|
353
|
+
</configuration>
|
354
|
+
</execution>
|
355
|
+
</executions>
|
356
|
+
</plugin>
|
357
|
+
<plugin>
|
358
|
+
<groupId>de.saumya.mojo</groupId>
|
359
|
+
<artifactId>runit-maven-plugin</artifactId>
|
360
|
+
<version>${jruby.plugins.version}</version>
|
361
|
+
<executions>
|
362
|
+
<execution>
|
363
|
+
<goals>
|
364
|
+
<goal>test</goal>
|
365
|
+
</goals>
|
366
|
+
<configuration>
|
367
|
+
<runitDirectory>${runit.dir}</runitDirectory>
|
368
|
+
</configuration>
|
369
|
+
</execution>
|
370
|
+
</executions>
|
371
|
+
</plugin>
|
372
|
+
</plugins>
|
373
|
+
</build>
|
374
|
+
<profiles>
|
375
|
+
<profile>
|
376
|
+
<id>test-1.6.8</id>
|
377
|
+
<build>
|
378
|
+
<plugins>
|
379
|
+
<plugin>
|
380
|
+
<artifactId>maven-invoker-plugin</artifactId>
|
381
|
+
<version>1.8</version>
|
382
|
+
<executions>
|
383
|
+
<execution>
|
384
|
+
<id>tests-with-different-bc-versions</id>
|
385
|
+
<goals>
|
386
|
+
<goal>install</goal>
|
387
|
+
<goal>run</goal>
|
388
|
+
</goals>
|
389
|
+
<configuration>
|
390
|
+
<projectsDirectory>integration</projectsDirectory>
|
391
|
+
<pomIncludes>
|
392
|
+
<pomInclude>*/pom.xml</pomInclude>
|
393
|
+
</pomIncludes>
|
394
|
+
<streamLogs>true</streamLogs>
|
395
|
+
<properties>
|
396
|
+
<jruby.versions>${jruby.versions}</jruby.versions>
|
397
|
+
<jruby.modes>${jruby.modes}</jruby.modes>
|
398
|
+
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
399
|
+
<bc.versions>${bc.versions}</bc.versions>
|
400
|
+
<runit.dir>${runit.dir}</runit.dir>
|
401
|
+
</properties>
|
402
|
+
</configuration>
|
403
|
+
</execution>
|
404
|
+
</executions>
|
405
|
+
</plugin>
|
406
|
+
</plugins>
|
407
|
+
</build>
|
408
|
+
<properties>
|
409
|
+
<bc.versions>1.51,1.52,1.53,1.54</bc.versions>
|
410
|
+
<jruby.modes>1.8,1.9</jruby.modes>
|
411
|
+
<jruby.versions>1.6.8</jruby.versions>
|
412
|
+
</properties>
|
413
|
+
</profile>
|
414
|
+
<profile>
|
415
|
+
<id>test-1.7.4</id>
|
416
|
+
<build>
|
417
|
+
<plugins>
|
418
|
+
<plugin>
|
419
|
+
<artifactId>maven-invoker-plugin</artifactId>
|
420
|
+
<version>1.8</version>
|
421
|
+
<executions>
|
422
|
+
<execution>
|
423
|
+
<goals>
|
424
|
+
<goal>install</goal>
|
425
|
+
<goal>run</goal>
|
426
|
+
</goals>
|
427
|
+
<configuration>
|
428
|
+
<projectsDirectory>integration</projectsDirectory>
|
429
|
+
<pomIncludes>
|
430
|
+
<pomInclude>*/pom.xml</pomInclude>
|
431
|
+
</pomIncludes>
|
432
|
+
<streamLogs>true</streamLogs>
|
433
|
+
<properties>
|
434
|
+
<jruby.versions>${jruby.versions}</jruby.versions>
|
435
|
+
<jruby.modes>${jruby.modes}</jruby.modes>
|
436
|
+
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
437
|
+
<bc.versions>${bc.versions}</bc.versions>
|
438
|
+
<runit.dir>${runit.dir}</runit.dir>
|
439
|
+
</properties>
|
440
|
+
</configuration>
|
441
|
+
</execution>
|
442
|
+
</executions>
|
443
|
+
</plugin>
|
444
|
+
</plugins>
|
445
|
+
</build>
|
446
|
+
<properties>
|
447
|
+
<bc.versions>1.51,1.52,1.53,1.54</bc.versions>
|
448
|
+
<jruby.modes>1.8,1.9</jruby.modes>
|
449
|
+
<jruby.versions>1.7.4</jruby.versions>
|
450
|
+
</properties>
|
451
|
+
</profile>
|
452
|
+
<profile>
|
453
|
+
<id>test-1.7.13</id>
|
454
|
+
<build>
|
455
|
+
<plugins>
|
456
|
+
<plugin>
|
457
|
+
<artifactId>maven-invoker-plugin</artifactId>
|
458
|
+
<version>1.8</version>
|
459
|
+
<executions>
|
460
|
+
<execution>
|
461
|
+
<goals>
|
462
|
+
<goal>install</goal>
|
463
|
+
<goal>run</goal>
|
464
|
+
</goals>
|
465
|
+
<configuration>
|
466
|
+
<projectsDirectory>integration</projectsDirectory>
|
467
|
+
<pomIncludes>
|
468
|
+
<pomInclude>*/pom.xml</pomInclude>
|
469
|
+
</pomIncludes>
|
470
|
+
<streamLogs>true</streamLogs>
|
471
|
+
<properties>
|
472
|
+
<jruby.versions>${jruby.versions}</jruby.versions>
|
473
|
+
<jruby.modes>${jruby.modes}</jruby.modes>
|
474
|
+
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
475
|
+
<bc.versions>${bc.versions}</bc.versions>
|
476
|
+
<runit.dir>${runit.dir}</runit.dir>
|
477
|
+
</properties>
|
478
|
+
</configuration>
|
479
|
+
</execution>
|
480
|
+
</executions>
|
481
|
+
</plugin>
|
482
|
+
</plugins>
|
483
|
+
</build>
|
484
|
+
<properties>
|
485
|
+
<bc.versions>1.51,1.52,1.53,1.54</bc.versions>
|
486
|
+
<jruby.modes>1.8,1.9,2.0</jruby.modes>
|
487
|
+
<jruby.versions>1.7.13</jruby.versions>
|
488
|
+
</properties>
|
489
|
+
</profile>
|
490
|
+
<profile>
|
491
|
+
<id>test-1.7.15</id>
|
492
|
+
<build>
|
493
|
+
<plugins>
|
494
|
+
<plugin>
|
495
|
+
<artifactId>maven-invoker-plugin</artifactId>
|
496
|
+
<version>1.8</version>
|
497
|
+
<executions>
|
498
|
+
<execution>
|
499
|
+
<goals>
|
500
|
+
<goal>install</goal>
|
501
|
+
<goal>run</goal>
|
502
|
+
</goals>
|
503
|
+
<configuration>
|
504
|
+
<projectsDirectory>integration</projectsDirectory>
|
505
|
+
<pomIncludes>
|
506
|
+
<pomInclude>*/pom.xml</pomInclude>
|
507
|
+
</pomIncludes>
|
508
|
+
<streamLogs>true</streamLogs>
|
509
|
+
<properties>
|
510
|
+
<jruby.versions>${jruby.versions}</jruby.versions>
|
511
|
+
<jruby.modes>${jruby.modes}</jruby.modes>
|
512
|
+
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
513
|
+
<bc.versions>${bc.versions}</bc.versions>
|
514
|
+
<runit.dir>${runit.dir}</runit.dir>
|
515
|
+
</properties>
|
516
|
+
</configuration>
|
517
|
+
</execution>
|
518
|
+
</executions>
|
519
|
+
</plugin>
|
520
|
+
</plugins>
|
521
|
+
</build>
|
522
|
+
<properties>
|
523
|
+
<bc.versions>1.51,1.52,1.53,1.54</bc.versions>
|
524
|
+
<jruby.modes>1.8,1.9,2.0</jruby.modes>
|
525
|
+
<jruby.versions>1.7.15</jruby.versions>
|
526
|
+
</properties>
|
527
|
+
</profile>
|
528
|
+
<profile>
|
529
|
+
<id>test-1.7.16</id>
|
530
|
+
<build>
|
531
|
+
<plugins>
|
532
|
+
<plugin>
|
533
|
+
<artifactId>maven-invoker-plugin</artifactId>
|
534
|
+
<version>1.8</version>
|
535
|
+
<executions>
|
536
|
+
<execution>
|
537
|
+
<goals>
|
538
|
+
<goal>install</goal>
|
539
|
+
<goal>run</goal>
|
540
|
+
</goals>
|
541
|
+
<configuration>
|
542
|
+
<projectsDirectory>integration</projectsDirectory>
|
543
|
+
<pomIncludes>
|
544
|
+
<pomInclude>*/pom.xml</pomInclude>
|
545
|
+
</pomIncludes>
|
546
|
+
<streamLogs>true</streamLogs>
|
547
|
+
<properties>
|
548
|
+
<jruby.versions>${jruby.versions}</jruby.versions>
|
549
|
+
<jruby.modes>${jruby.modes}</jruby.modes>
|
550
|
+
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
551
|
+
<bc.versions>${bc.versions}</bc.versions>
|
552
|
+
<runit.dir>${runit.dir}</runit.dir>
|
553
|
+
</properties>
|
554
|
+
</configuration>
|
555
|
+
</execution>
|
556
|
+
</executions>
|
557
|
+
</plugin>
|
558
|
+
</plugins>
|
559
|
+
</build>
|
560
|
+
<properties>
|
561
|
+
<bc.versions>1.51,1.52,1.53,1.54</bc.versions>
|
562
|
+
<jruby.modes>1.8,1.9,2.0</jruby.modes>
|
563
|
+
<jruby.versions>1.7.16</jruby.versions>
|
564
|
+
</properties>
|
565
|
+
</profile>
|
566
|
+
<profile>
|
567
|
+
<id>test-1.7.18</id>
|
568
|
+
<build>
|
569
|
+
<plugins>
|
570
|
+
<plugin>
|
571
|
+
<artifactId>maven-invoker-plugin</artifactId>
|
572
|
+
<version>1.8</version>
|
573
|
+
<executions>
|
574
|
+
<execution>
|
575
|
+
<goals>
|
576
|
+
<goal>install</goal>
|
577
|
+
<goal>run</goal>
|
578
|
+
</goals>
|
579
|
+
<configuration>
|
580
|
+
<projectsDirectory>integration</projectsDirectory>
|
581
|
+
<pomIncludes>
|
582
|
+
<pomInclude>*/pom.xml</pomInclude>
|
583
|
+
</pomIncludes>
|
584
|
+
<streamLogs>true</streamLogs>
|
585
|
+
<properties>
|
586
|
+
<jruby.versions>${jruby.versions}</jruby.versions>
|
587
|
+
<jruby.modes>${jruby.modes}</jruby.modes>
|
588
|
+
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
589
|
+
<bc.versions>${bc.versions}</bc.versions>
|
590
|
+
<runit.dir>${runit.dir}</runit.dir>
|
591
|
+
</properties>
|
592
|
+
</configuration>
|
593
|
+
</execution>
|
594
|
+
</executions>
|
595
|
+
</plugin>
|
596
|
+
</plugins>
|
597
|
+
</build>
|
598
|
+
<properties>
|
599
|
+
<bc.versions>1.51,1.52,1.53,1.54</bc.versions>
|
600
|
+
<jruby.modes>1.8,1.9,2.0</jruby.modes>
|
601
|
+
<jruby.versions>1.7.18</jruby.versions>
|
602
|
+
</properties>
|
603
|
+
</profile>
|
604
|
+
<profile>
|
605
|
+
<id>test-1.7.20</id>
|
606
|
+
<build>
|
607
|
+
<plugins>
|
608
|
+
<plugin>
|
609
|
+
<artifactId>maven-invoker-plugin</artifactId>
|
610
|
+
<version>1.8</version>
|
611
|
+
<executions>
|
612
|
+
<execution>
|
613
|
+
<goals>
|
614
|
+
<goal>install</goal>
|
615
|
+
<goal>run</goal>
|
616
|
+
</goals>
|
617
|
+
<configuration>
|
618
|
+
<projectsDirectory>integration</projectsDirectory>
|
619
|
+
<pomIncludes>
|
620
|
+
<pomInclude>*/pom.xml</pomInclude>
|
621
|
+
</pomIncludes>
|
622
|
+
<streamLogs>true</streamLogs>
|
623
|
+
<properties>
|
624
|
+
<jruby.versions>${jruby.versions}</jruby.versions>
|
625
|
+
<jruby.modes>${jruby.modes}</jruby.modes>
|
626
|
+
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
627
|
+
<bc.versions>${bc.versions}</bc.versions>
|
628
|
+
<runit.dir>${runit.dir}</runit.dir>
|
629
|
+
</properties>
|
630
|
+
</configuration>
|
631
|
+
</execution>
|
632
|
+
</executions>
|
633
|
+
</plugin>
|
634
|
+
</plugins>
|
635
|
+
</build>
|
636
|
+
<properties>
|
637
|
+
<bc.versions>1.51,1.52,1.53,1.54</bc.versions>
|
638
|
+
<jruby.modes>1.8,1.9,2.0</jruby.modes>
|
639
|
+
<jruby.versions>1.7.20</jruby.versions>
|
640
|
+
</properties>
|
641
|
+
</profile>
|
642
|
+
<profile>
|
643
|
+
<id>test-1.7.22</id>
|
644
|
+
<build>
|
645
|
+
<plugins>
|
646
|
+
<plugin>
|
647
|
+
<artifactId>maven-invoker-plugin</artifactId>
|
648
|
+
<version>1.8</version>
|
649
|
+
<executions>
|
650
|
+
<execution>
|
651
|
+
<goals>
|
652
|
+
<goal>install</goal>
|
653
|
+
<goal>run</goal>
|
654
|
+
</goals>
|
655
|
+
<configuration>
|
656
|
+
<projectsDirectory>integration</projectsDirectory>
|
657
|
+
<pomIncludes>
|
658
|
+
<pomInclude>*/pom.xml</pomInclude>
|
659
|
+
</pomIncludes>
|
660
|
+
<streamLogs>true</streamLogs>
|
661
|
+
<properties>
|
662
|
+
<jruby.versions>${jruby.versions}</jruby.versions>
|
663
|
+
<jruby.modes>${jruby.modes}</jruby.modes>
|
664
|
+
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
665
|
+
<bc.versions>${bc.versions}</bc.versions>
|
666
|
+
<runit.dir>${runit.dir}</runit.dir>
|
667
|
+
</properties>
|
668
|
+
</configuration>
|
669
|
+
</execution>
|
670
|
+
</executions>
|
671
|
+
</plugin>
|
672
|
+
</plugins>
|
673
|
+
</build>
|
674
|
+
<properties>
|
675
|
+
<bc.versions>1.51,1.52,1.53,1.54</bc.versions>
|
676
|
+
<jruby.modes>1.8,1.9,2.0</jruby.modes>
|
677
|
+
<jruby.versions>1.7.22</jruby.versions>
|
678
|
+
</properties>
|
679
|
+
</profile>
|
680
|
+
<profile>
|
681
|
+
<id>test-1.7.23</id>
|
682
|
+
<build>
|
683
|
+
<plugins>
|
684
|
+
<plugin>
|
685
|
+
<artifactId>maven-invoker-plugin</artifactId>
|
686
|
+
<version>1.8</version>
|
687
|
+
<executions>
|
688
|
+
<execution>
|
689
|
+
<goals>
|
690
|
+
<goal>install</goal>
|
691
|
+
<goal>run</goal>
|
692
|
+
</goals>
|
693
|
+
<configuration>
|
694
|
+
<projectsDirectory>integration</projectsDirectory>
|
695
|
+
<pomIncludes>
|
696
|
+
<pomInclude>*/pom.xml</pomInclude>
|
697
|
+
</pomIncludes>
|
698
|
+
<streamLogs>true</streamLogs>
|
699
|
+
<properties>
|
700
|
+
<jruby.versions>${jruby.versions}</jruby.versions>
|
701
|
+
<jruby.modes>${jruby.modes}</jruby.modes>
|
702
|
+
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
703
|
+
<bc.versions>${bc.versions}</bc.versions>
|
704
|
+
<runit.dir>${runit.dir}</runit.dir>
|
705
|
+
</properties>
|
706
|
+
</configuration>
|
707
|
+
</execution>
|
708
|
+
</executions>
|
709
|
+
</plugin>
|
710
|
+
</plugins>
|
711
|
+
</build>
|
712
|
+
<properties>
|
713
|
+
<bc.versions>1.51,1.52,1.53,1.54</bc.versions>
|
714
|
+
<jruby.modes>1.8,1.9,2.0</jruby.modes>
|
715
|
+
<jruby.versions>1.7.23</jruby.versions>
|
716
|
+
</properties>
|
717
|
+
</profile>
|
718
|
+
<profile>
|
719
|
+
<id>test-1.7.24</id>
|
720
|
+
<build>
|
721
|
+
<plugins>
|
722
|
+
<plugin>
|
723
|
+
<artifactId>maven-invoker-plugin</artifactId>
|
724
|
+
<version>1.8</version>
|
725
|
+
<executions>
|
726
|
+
<execution>
|
727
|
+
<goals>
|
728
|
+
<goal>install</goal>
|
729
|
+
<goal>run</goal>
|
730
|
+
</goals>
|
731
|
+
<configuration>
|
732
|
+
<projectsDirectory>integration</projectsDirectory>
|
733
|
+
<pomIncludes>
|
734
|
+
<pomInclude>*/pom.xml</pomInclude>
|
735
|
+
</pomIncludes>
|
736
|
+
<streamLogs>true</streamLogs>
|
737
|
+
<properties>
|
738
|
+
<jruby.versions>${jruby.versions}</jruby.versions>
|
739
|
+
<jruby.modes>${jruby.modes}</jruby.modes>
|
740
|
+
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
741
|
+
<bc.versions>${bc.versions}</bc.versions>
|
742
|
+
<runit.dir>${runit.dir}</runit.dir>
|
743
|
+
</properties>
|
744
|
+
</configuration>
|
745
|
+
</execution>
|
746
|
+
</executions>
|
747
|
+
</plugin>
|
748
|
+
</plugins>
|
749
|
+
</build>
|
750
|
+
<properties>
|
751
|
+
<bc.versions>1.51,1.52,1.53,1.54</bc.versions>
|
752
|
+
<jruby.modes>1.8,1.9,2.0</jruby.modes>
|
753
|
+
<jruby.versions>1.7.24</jruby.versions>
|
754
|
+
</properties>
|
755
|
+
</profile>
|
756
|
+
<profile>
|
757
|
+
<id>test-1.7.25</id>
|
758
|
+
<build>
|
759
|
+
<plugins>
|
760
|
+
<plugin>
|
761
|
+
<artifactId>maven-invoker-plugin</artifactId>
|
762
|
+
<version>1.8</version>
|
763
|
+
<executions>
|
764
|
+
<execution>
|
765
|
+
<goals>
|
766
|
+
<goal>install</goal>
|
767
|
+
<goal>run</goal>
|
768
|
+
</goals>
|
769
|
+
<configuration>
|
770
|
+
<projectsDirectory>integration</projectsDirectory>
|
771
|
+
<pomIncludes>
|
772
|
+
<pomInclude>*/pom.xml</pomInclude>
|
773
|
+
</pomIncludes>
|
774
|
+
<streamLogs>true</streamLogs>
|
775
|
+
<properties>
|
776
|
+
<jruby.versions>${jruby.versions}</jruby.versions>
|
777
|
+
<jruby.modes>${jruby.modes}</jruby.modes>
|
778
|
+
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
779
|
+
<bc.versions>${bc.versions}</bc.versions>
|
780
|
+
<runit.dir>${runit.dir}</runit.dir>
|
781
|
+
</properties>
|
782
|
+
</configuration>
|
783
|
+
</execution>
|
784
|
+
</executions>
|
785
|
+
</plugin>
|
786
|
+
</plugins>
|
787
|
+
</build>
|
788
|
+
<properties>
|
789
|
+
<bc.versions>1.51,1.52,1.53,1.54</bc.versions>
|
790
|
+
<jruby.modes>1.8,1.9,2.0</jruby.modes>
|
791
|
+
<jruby.versions>1.7.25</jruby.versions>
|
792
|
+
</properties>
|
793
|
+
</profile>
|
794
|
+
<profile>
|
795
|
+
<id>test-9.0.1.0</id>
|
796
|
+
<build>
|
797
|
+
<plugins>
|
798
|
+
<plugin>
|
799
|
+
<artifactId>maven-invoker-plugin</artifactId>
|
800
|
+
<version>1.8</version>
|
801
|
+
<executions>
|
802
|
+
<execution>
|
803
|
+
<goals>
|
804
|
+
<goal>install</goal>
|
805
|
+
<goal>run</goal>
|
806
|
+
</goals>
|
807
|
+
<configuration>
|
808
|
+
<projectsDirectory>integration</projectsDirectory>
|
809
|
+
<pomIncludes>
|
810
|
+
<pomInclude>*/pom.xml</pomInclude>
|
811
|
+
</pomIncludes>
|
812
|
+
<streamLogs>true</streamLogs>
|
813
|
+
<properties>
|
814
|
+
<jruby.versions>${jruby.versions}</jruby.versions>
|
815
|
+
<jruby.modes>${jruby.modes}</jruby.modes>
|
816
|
+
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
817
|
+
<bc.versions>${bc.versions}</bc.versions>
|
818
|
+
<runit.dir>${runit.dir}</runit.dir>
|
819
|
+
</properties>
|
820
|
+
</configuration>
|
821
|
+
</execution>
|
822
|
+
</executions>
|
823
|
+
</plugin>
|
824
|
+
</plugins>
|
825
|
+
</build>
|
826
|
+
<properties>
|
827
|
+
<bc.versions>1.51,1.52,1.53,1.54</bc.versions>
|
828
|
+
<jruby.version>9.0.1.0</jruby.version>
|
829
|
+
<jruby.versions>9.0.1.0</jruby.versions>
|
830
|
+
</properties>
|
831
|
+
</profile>
|
832
|
+
<profile>
|
833
|
+
<id>test-9.0.5.0</id>
|
834
|
+
<build>
|
835
|
+
<plugins>
|
836
|
+
<plugin>
|
837
|
+
<artifactId>maven-invoker-plugin</artifactId>
|
838
|
+
<version>1.8</version>
|
839
|
+
<executions>
|
840
|
+
<execution>
|
841
|
+
<goals>
|
842
|
+
<goal>install</goal>
|
843
|
+
<goal>run</goal>
|
844
|
+
</goals>
|
845
|
+
<configuration>
|
846
|
+
<projectsDirectory>integration</projectsDirectory>
|
847
|
+
<pomIncludes>
|
848
|
+
<pomInclude>*/pom.xml</pomInclude>
|
849
|
+
</pomIncludes>
|
850
|
+
<streamLogs>true</streamLogs>
|
851
|
+
<properties>
|
852
|
+
<jruby.versions>${jruby.versions}</jruby.versions>
|
853
|
+
<jruby.modes>${jruby.modes}</jruby.modes>
|
854
|
+
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
855
|
+
<bc.versions>${bc.versions}</bc.versions>
|
856
|
+
<runit.dir>${runit.dir}</runit.dir>
|
857
|
+
</properties>
|
858
|
+
</configuration>
|
859
|
+
</execution>
|
860
|
+
</executions>
|
861
|
+
</plugin>
|
862
|
+
</plugins>
|
863
|
+
</build>
|
864
|
+
<properties>
|
865
|
+
<bc.versions>1.51,1.52,1.53,1.54</bc.versions>
|
866
|
+
<jruby.version>9.0.5.0</jruby.version>
|
867
|
+
<jruby.versions>9.0.5.0</jruby.versions>
|
868
|
+
</properties>
|
869
|
+
</profile>
|
870
|
+
<profile>
|
871
|
+
<id>test-9.1.0.0</id>
|
872
|
+
<build>
|
873
|
+
<plugins>
|
874
|
+
<plugin>
|
875
|
+
<artifactId>maven-invoker-plugin</artifactId>
|
876
|
+
<version>1.8</version>
|
877
|
+
<executions>
|
878
|
+
<execution>
|
879
|
+
<goals>
|
880
|
+
<goal>install</goal>
|
881
|
+
<goal>run</goal>
|
882
|
+
</goals>
|
883
|
+
<configuration>
|
884
|
+
<projectsDirectory>integration</projectsDirectory>
|
885
|
+
<pomIncludes>
|
886
|
+
<pomInclude>*/pom.xml</pomInclude>
|
887
|
+
</pomIncludes>
|
888
|
+
<streamLogs>true</streamLogs>
|
889
|
+
<properties>
|
890
|
+
<jruby.versions>${jruby.versions}</jruby.versions>
|
891
|
+
<jruby.modes>${jruby.modes}</jruby.modes>
|
892
|
+
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
893
|
+
<bc.versions>${bc.versions}</bc.versions>
|
894
|
+
<runit.dir>${runit.dir}</runit.dir>
|
895
|
+
</properties>
|
896
|
+
</configuration>
|
897
|
+
</execution>
|
898
|
+
</executions>
|
899
|
+
</plugin>
|
900
|
+
</plugins>
|
901
|
+
</build>
|
902
|
+
<properties>
|
903
|
+
<bc.versions>1.51,1.52,1.53,1.54</bc.versions>
|
904
|
+
<jruby.version>9.1.0.0</jruby.version>
|
905
|
+
<jruby.versions>9.1.0.0</jruby.versions>
|
906
|
+
</properties>
|
907
|
+
</profile>
|
908
|
+
<profile>
|
909
|
+
<id>test-9.1.1.0</id>
|
910
|
+
<build>
|
911
|
+
<plugins>
|
912
|
+
<plugin>
|
913
|
+
<artifactId>maven-invoker-plugin</artifactId>
|
914
|
+
<version>1.8</version>
|
915
|
+
<executions>
|
916
|
+
<execution>
|
917
|
+
<goals>
|
918
|
+
<goal>install</goal>
|
919
|
+
<goal>run</goal>
|
920
|
+
</goals>
|
921
|
+
<configuration>
|
922
|
+
<projectsDirectory>integration</projectsDirectory>
|
923
|
+
<pomIncludes>
|
924
|
+
<pomInclude>*/pom.xml</pomInclude>
|
925
|
+
</pomIncludes>
|
926
|
+
<streamLogs>true</streamLogs>
|
927
|
+
<properties>
|
928
|
+
<jruby.versions>${jruby.versions}</jruby.versions>
|
929
|
+
<jruby.modes>${jruby.modes}</jruby.modes>
|
930
|
+
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
931
|
+
<bc.versions>${bc.versions}</bc.versions>
|
932
|
+
<runit.dir>${runit.dir}</runit.dir>
|
933
|
+
</properties>
|
934
|
+
</configuration>
|
935
|
+
</execution>
|
936
|
+
</executions>
|
937
|
+
</plugin>
|
938
|
+
</plugins>
|
939
|
+
</build>
|
940
|
+
<properties>
|
941
|
+
<bc.versions>1.51,1.52,1.53,1.54</bc.versions>
|
942
|
+
<jruby.version>9.1.1.0</jruby.version>
|
943
|
+
<jruby.versions>9.1.1.0</jruby.versions>
|
944
|
+
</properties>
|
945
|
+
</profile>
|
946
|
+
<profile>
|
947
|
+
<id>test-9.1.2.0</id>
|
948
|
+
<build>
|
949
|
+
<plugins>
|
950
|
+
<plugin>
|
951
|
+
<artifactId>maven-invoker-plugin</artifactId>
|
952
|
+
<version>1.8</version>
|
953
|
+
<executions>
|
954
|
+
<execution>
|
955
|
+
<goals>
|
956
|
+
<goal>install</goal>
|
957
|
+
<goal>run</goal>
|
958
|
+
</goals>
|
959
|
+
<configuration>
|
960
|
+
<projectsDirectory>integration</projectsDirectory>
|
961
|
+
<pomIncludes>
|
962
|
+
<pomInclude>*/pom.xml</pomInclude>
|
963
|
+
</pomIncludes>
|
964
|
+
<streamLogs>true</streamLogs>
|
965
|
+
<properties>
|
966
|
+
<jruby.versions>${jruby.versions}</jruby.versions>
|
967
|
+
<jruby.modes>${jruby.modes}</jruby.modes>
|
968
|
+
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
969
|
+
<bc.versions>${bc.versions}</bc.versions>
|
970
|
+
<runit.dir>${runit.dir}</runit.dir>
|
971
|
+
</properties>
|
972
|
+
</configuration>
|
973
|
+
</execution>
|
974
|
+
</executions>
|
975
|
+
</plugin>
|
976
|
+
</plugins>
|
977
|
+
</build>
|
978
|
+
<properties>
|
979
|
+
<bc.versions>1.51,1.52,1.53,1.54</bc.versions>
|
980
|
+
<jruby.version>9.1.2.0</jruby.version>
|
981
|
+
<jruby.versions>9.1.2.0</jruby.versions>
|
982
|
+
</properties>
|
983
|
+
</profile>
|
984
|
+
<profile>
|
985
|
+
<id>release</id>
|
986
|
+
<build>
|
987
|
+
<plugins>
|
988
|
+
<plugin>
|
989
|
+
<artifactId>maven-gpg-plugin</artifactId>
|
990
|
+
<version>1.5</version>
|
991
|
+
<executions>
|
992
|
+
<execution>
|
993
|
+
<phase>verify</phase>
|
994
|
+
<goals>
|
995
|
+
<goal>sign</goal>
|
996
|
+
</goals>
|
997
|
+
</execution>
|
998
|
+
</executions>
|
999
|
+
</plugin>
|
1000
|
+
</plugins>
|
1001
|
+
</build>
|
1002
|
+
</profile>
|
1003
|
+
</profiles>
|
1004
|
+
</project>
|