|
13 | 13 | <name>JRuby OpenSSL</name>
|
14 | 14 | <description>JRuby-OpenSSL is an add-on gem for JRuby that emulates the Ruby OpenSSL native library.</description>
|
15 | 15 | <url>https://github.com/jruby/jruby</url>
|
| 16 | + <developers> |
| 17 | + <developer> |
| 18 | + <name>Ola Bini</name> |
| 19 | + |
| 20 | + </developer> |
| 21 | + <developer> |
| 22 | + <name>JRuby contributors</name> |
| 23 | + </developer> |
| 24 | + </developers> |
| 25 | + <scm> |
| 26 | + <connection>https://github.com/jruby/jruby.git</connection> |
| 27 | + <url>https://github.com/jruby/jruby</url> |
| 28 | + </scm> |
16 | 29 | <properties>
|
| 30 | + <jruby.version>1.7.12</jruby.version> |
17 | 31 | <tesla.dump.readonly>true</tesla.dump.readonly>
|
18 | 32 | <gem.path>${gem.home}</gem.path>
|
19 | 33 | <gem.home>../target/rubygems</gem.home>
|
20 |
| - <jruby.plugins.version>1.0.0-rc4</jruby.plugins.version> |
| 34 | + <jruby.plugins.version>1.0.2</jruby.plugins.version> |
21 | 35 | <tesla.dump.pom>pom.xml</tesla.dump.pom>
|
22 | 36 | <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
23 | 37 | </properties>
|
|
35 | 49 | <dependency>
|
36 | 50 | <groupId>org.jruby</groupId>
|
37 | 51 | <artifactId>jruby-core</artifactId>
|
38 |
| - <version>1.6.8</version> |
| 52 | + <version>${jruby.version}</version> |
39 | 53 | <scope>provided</scope>
|
40 | 54 | </dependency>
|
| 55 | + <dependency> |
| 56 | + <groupId>org.jruby</groupId> |
| 57 | + <artifactId>jruby-stdlib</artifactId> |
| 58 | + <version>${jruby.version}</version> |
| 59 | + <scope>provided</scope> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>junit</groupId> |
| 63 | + <artifactId>junit</artifactId> |
| 64 | + <version>4.11</version> |
| 65 | + <scope>test</scope> |
| 66 | + </dependency> |
41 | 67 | </dependencies>
|
42 | 68 | <repositories>
|
43 | 69 | <repository>
|
|
49 | 75 | <extensions>
|
50 | 76 | <extension>
|
51 | 77 | <groupId>de.saumya.mojo</groupId>
|
52 |
| - <artifactId>gem-extension</artifactId> |
| 78 | + <artifactId>gem-with-jar-extension</artifactId> |
53 | 79 | <version>${jruby.plugins.version}</version>
|
54 | 80 | </extension>
|
55 | 81 | </extensions>
|
56 | 82 | <directory>${basedir}/pkg</directory>
|
57 | 83 | <plugins>
|
58 |
| - <plugin> |
59 |
| - <artifactId>maven-jar-plugin</artifactId> |
60 |
| - <version>2.4</version> |
61 |
| - <executions> |
62 |
| - <execution> |
63 |
| - <phase>prepare-package</phase> |
64 |
| - <goals> |
65 |
| - <goal>jar</goal> |
66 |
| - </goals> |
67 |
| - </execution> |
68 |
| - </executions> |
69 |
| - <configuration> |
70 |
| - <outputDirectory>lib</outputDirectory> |
71 |
| - <finalName>jopenssl</finalName> |
72 |
| - </configuration> |
73 |
| - </plugin> |
74 |
| - <plugin> |
75 |
| - <artifactId>maven-clean-plugin</artifactId> |
76 |
| - <version>2.4</version> |
77 |
| - <configuration> |
78 |
| - <filesets> |
79 |
| - <fileset> |
80 |
| - <directory>lib</directory> |
81 |
| - <includes> |
82 |
| - <include>jopenssl.jar</include> |
83 |
| - </includes> |
84 |
| - </fileset> |
85 |
| - </filesets> |
86 |
| - </configuration> |
87 |
| - </plugin> |
88 | 84 | <plugin>
|
89 | 85 | <groupId>de.saumya.mojo</groupId>
|
90 | 86 | <artifactId>gem-maven-plugin</artifactId>
|
|
0 commit comments