<?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>
<artifactId>slice</artifactId>
<version>0.3</version>
<packaging>jar</packaging>
<name>slice</name>
<description>Library for efficiently working with heap and off-heap memory</description>
<url>https://github.com/airlift/slice</url>
<parent>
<groupId>io.airlift</groupId>
<artifactId>airbase</artifactId>
<version>11</version>
</parent>
<inceptionYear>2012</inceptionYear>
<properties>
<air.check.skip-extended>true</air.check.skip-extended>
<air.check.skip-license>false</air.check.skip-license>
</properties>
<dependencies>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>annotations</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<!-- for testing -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<scm>
<tag>0.3</tag>
</scm>
</project>
|