<?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>json</artifactId>
  <version>1.8.0</version>
  <packaging>gem</packaging>
  <name>JSON implementation for JRuby</name>
  <description>A JSON implementation as a JRuby extension.</description>
  <url>https://github.com/flori/json</url>
  <licenses>
    <license>
      <name>Ruby</name>
    </license>
  </licenses>
  <developers>
    <developer>
      <name>Daniel Luz</name>
      <email>dev+ruby@mernen.com</email>
    </developer>
  </developers>
  <scm>
    <connection>https://github.com/flori/json.git</connection>
    <url>https://github.com/flori/json</url>
  </scm>
  <properties>
    <jruby.plugins.version>1.0.8</jruby.plugins.version>
  </properties>
  <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>json-1.8.0.gemspec</gemspec>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
