<?xml version="1.0" encoding="UTF-8"?>
<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"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>rubygems</groupId>
  <artifactId>jruby-openssl</artifactId>
  <version>0.9.6</version>
  <packaging>gem</packaging>
  <name>JRuby OpenSSL</name>
  <description>JRuby-OpenSSL is an add-on gem for JRuby that emulates the Ruby OpenSSL native library.</description>
  <url>https://github.com/jruby/jruby-openssl</url>
  <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>Ola Bini</name>
      <email>ola.bini@gmail.com</email>
    </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>
    <jruby.plugins.version>1.0.8</jruby.plugins.version>
  </properties>
  <dependencies>
    <dependency>
      <groupId>rubygems</groupId>
      <artifactId>jar-dependencies</artifactId>
      <version>[0.0.9,0.0.9.0.0.0.0.1)</version>
      <type>gem</type>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>rubygems</groupId>
      <artifactId>mocha</artifactId>
      <version>[1.1.0,1.1.99999]</version>
      <type>gem</type>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.bouncycastle</groupId>
      <artifactId>bcpkix-jdk15on</artifactId>
      <version>1.49</version>
    </dependency>
    <dependency>
      <groupId>org.bouncycastle</groupId>
      <artifactId>bcprov-jdk15on</artifactId>
      <version>1.49</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-extension</artifactId>
        <version>${jruby.plugins.version}</version>
      </extension>
    </extensions>
    <directory>${basedir}/pkg</directory>
    <plugins>
      <plugin>
        <groupId>de.saumya.mojo</groupId>
        <artifactId>gem-maven-plugin</artifactId>
        <version>${jruby.plugins.version}</version>
        <configuration>
          <gemspec>jruby-openssl-0.9.6.gemspec</gemspec>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
