cached
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.deephacks.cached</groupId>
<artifactId>cached</artifactId>
<version>0.1.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!-- vi:ts=2:sw=2:expandtab: -->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.deephacks.cached</groupId>
<artifactId>cached</artifactId>
<name>cached</name>
<version>0.1.0</version>
<packaging>jar</packaging>
<description>An off-heap slab cache for Java.</description>
<url>http://deephacks.org</url>
<inceptionYear>2013</inceptionYear>
<mailingLists>
<mailingList>
<name>Development List</name>
<post>tools4j-dev@googlegroups.com</post>
</mailingList>
<mailingList>
<name>User List</name>
<post>tools4j-user@googlegroups.com</post>
</mailingList>
</mailingLists>
<issueManagement>
<system>github</system>
<url>https://github.com/deephacks/cached/issues</url>
</issueManagement>
<scm>
<connection>scm:git:git@github.com:deephacks/cached.git</connection>
<developerConnection>scm:git:git@github.com:deephacks/cached.git</developerConnection>
<url>scm:git:git@github.com/deephacks/cached</url>
</scm>
<licenses>
<license>
<name>Apache License</name>
<url>license.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Kristoffer Sjogren</name>
<id>krisskross</id>
<email>stoffe -at- gmail.com</email>
<organization/>
<roles>
<role>Developer</role>
</roles>
<url>http://stoffe.deephacks.org/</url>
<timezone>+1</timezone>
</developer>
</developers>
<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<version>2.10</version>
<configuration>
<trimStackTrace>false</trimStackTrace>
<printSummary>true</printSummary>
<useFile>true</useFile>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<includes>
<include>**/*TestCase.java</include>
<include>**/*TestSuite.java</include>
<include>**/*Test.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<version>2.3.2</version>
<configuration>
<archive>
<manifestEntries>
<Specification-Title>${project.name}</Specification-Title>
<Specification-Version>${project.version}</Specification-Version>
<Specification-Vendor>deephacks</Specification-Vendor>
<Implementation-Title>${project.name}</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
<Implementation-Vendor>deephacks</Implementation-Vendor>
<Implementation-Vendor-Id>org.deephacks</Implementation-Vendor-Id>
<url>http://deephacks.org</url>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<version>2.8</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
<execution>
<goals>
<goal>aggregate</goal>
</goals>
<phase>site</phase>
</execution>
</executions>
<configuration>
<javadoc:aggregate>true</javadoc:aggregate>
<!-- <excludePackageNames>*.internal:*.test:*.examples</excludePackageNames> -->
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>compile</scope>
<version>1.6.4</version>
</dependency>
<dependency>
<groupId>com.esotericsoftware.kryo</groupId>
<artifactId>kryo</artifactId>
<version>2.21</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.caliper</groupId>
<artifactId>caliper</artifactId>
<version>0.5-rc1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
<version>4.10</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>sign-artifacts</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<distributionManagement>
<repository>
<id>sonatype-nexus-staging</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>