jruby-openssl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>rubygems</groupId> <artifactId>jruby-openssl</artifactId> <version>0.10.4</version> </dependency>
<project> <modelVersion>4.0.0</modelVersion> <groupId>rubygems</groupId> <artifactId>jruby-openssl</artifactId> <version>0.10.4</version> <packaging>gem</packaging> <name>JRuby OpenSSL</name> <url>https://github.com/jruby/jruby-openssl</url> <description>JRuby-OpenSSL is an add-on gem for JRuby that emulates the Ruby OpenSSL native library.</description> <licenses> <license> <name>EPL-1.0</name> <url>http://opensource.org/licenses/EPL-1.0</url> <comments>Eclipse Public License 1.0</comments> </license> <license> <name>GPL-2.0</name> <url>http://opensource.org/licenses/GPL-2.0</url> <comments>GNU General Public License version 2.0</comments> </license> <license> <name>LGPL-2.1</name> <url>http://opensource.org/licenses/LGPL-2.1</url> <comments>GNU Library or "Lesser" General Public License version 2.1</comments> </license> </licenses> <developers> <developer> <name>Karol Bucek</name> <email>self+jruby-openssl@kares.org</email> </developer> <developer> <name>Ola Bini</name> </developer> <developer> <name>JRuby contributors</name> </developer> </developers> <scm> <connection>https://github.com/jruby/jruby-openssl.git</connection> <url>https://github.com/jruby/jruby-openssl</url> </scm> <properties> <project.build.sourceEncoding>utf-8</project.build.sourceEncoding> <jruby.plugins.version>1.0.9</jruby.plugins.version> </properties> <dependencies> <dependency> <groupId>rubygems</groupId> <artifactId>jar-dependencies</artifactId> <version>[0.1,0.99999]</version> <type>gem</type> <scope>test</scope> </dependency> <dependency> <groupId>rubygems</groupId> <artifactId>mocha</artifactId> <version>[1.4,2.0)</version> <type>gem</type> <scope>test</scope> </dependency> <dependency> <groupId>rubygems</groupId> <artifactId>ruby-maven</artifactId> <version>[3.0,3.99999]</version> <type>gem</type> <scope>test</scope> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> <version>1.62</version> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk15on</artifactId> <version>1.62</version> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bctls-jdk15on</artifactId> <version>1.62</version> </dependency> </dependencies> <repositories> <repository> <id>rubygems-releases</id> <url>http://rubygems-proxy.torquebox.org/releases</url> </repository> </repositories> <build> <extensions> <extension> <groupId>de.saumya.mojo</groupId> <artifactId>gem-with-jar-extension</artifactId> <version>${jruby.plugins.version}</version> </extension> </extensions> <directory>${basedir}/pkg</directory> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <executions> <execution> <phase>prepare-package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <outputDirectory>lib</outputDirectory> <finalName>jruby-openssl</finalName> </configuration> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>2.4</version> <configuration> <filesets> <fileset> <directory>lib</directory> <includes> <include>jruby-openssl.jar</include> <include>*/**/*.jar</include> </includes> </fileset> </filesets> </configuration> </plugin> <plugin> <groupId>de.saumya.mojo</groupId> <artifactId>gem-maven-plugin</artifactId> <version>${jruby.plugins.version}</version> <configuration> <gemspec>jruby-openssl.gemspec</gemspec> </configuration> </plugin> </plugins> </build> </project>