<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

    <modelVersion>4.0.0</modelVersion>

    <groupId>io.airlift</groupId>
    <artifactId>floatingdecimal</artifactId>
    <version>0.1</version>
    <packaging>jar</packaging>

    <parent>
        <groupId>io.airlift</groupId>
        <artifactId>airbase</artifactId>
        <version>7</version>
    </parent>

    <name>floatingdecimal</name>

    <description>Fork of sun.misc.FloatingDecimal to fix monitor contention issues</description>
    <url>http://github.com/airlift/floatingdecimal</url>

    <inceptionYear>2013</inceptionYear>

    <licenses>
        <license>
            <name>GPL2 with "classpath" exception</name>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <scm>
        <connection>scm:git:git://github.com/airlift/floatingdecimal.git</connection>
        <developerConnection>scm:git:git@github.com:airlift/floatingdecimal.git</developerConnection>
        <url>http://github.com/airlift/floatingdecimal/tree/master</url>
      <tag>0.1</tag>
  </scm>

    <properties>
        <air.check.skip-extended>true</air.check.skip-extended>
        <air.check.fail-all>false</air.check.fail-all>
        <air.check.fail-basic>true</air.check.fail-basic>
    </properties>

    <distributionManagement>
        <snapshotRepository>
            <id>sonatype-nexus-snapshots</id>
            <name>Sonatype Nexus Snapshots</name>
            <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
        </snapshotRepository>
        <repository>
            <id>sonatype-nexus-staging</id>
            <name>Nexus Release Repository</name>
            <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
        </repository>
    </distributionManagement>
</project>
