memoization-guava
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.xn--ho-hia.memoization</groupId> <artifactId>memoization-guava</artifactId> <version>2.0.0-20160802182936</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- This file is part of memoization.java. It is subject to the license terms in the LICENSE file found in the top-level directory of this distribution and at http://creativecommons.org/publicdomain/zero/1.0/. No part of memoization.java, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the LICENSE file. --> <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>de.xn--ho-hia.memoization</groupId> <artifactId>memoization-guava</artifactId> <version>2.0.0-20160802182936</version> <name>memoization.java :: Guava</name> <description>Java memoization library</description> <url>http://seb.xn--ho-hia.de/memoization.java/memoization-guava</url> <inceptionYear>2016</inceptionYear> <organization> <name>metio.wtf</name> <url>http://metio.wtf/</url> </organization> <licenses> <license> <name>Creative Commons Zero</name> <url>http://creativecommons.org/publicdomain/zero/1.0/legalcode.txt</url> <distribution>repo</distribution> <comments>http://creativecommons.org/publicdomain/zero/1.0/</comments> </license> </licenses> <developers> <developer> <id>sebhoss</id> <name>Sebastian Hoß</name> <email>mail@shoss.de</email> <url>http://seb.xn--ho-hia.de/</url> <organization>metio.wtf</organization> <organizationUrl>http://metio.wtf/</organizationUrl> <roles> <role>Developer</role> </roles> <timezone>Europe/Berlin</timezone> <properties> <bitbucket>@sebhoss</bitbucket> <twitter>@sebhoss</twitter> <gitlab>@sebastian.hoss</gitlab> <github>@sebhoss</github> </properties> </developer> </developers> <scm> <connection>scm:git:git://github.com/sebhoss/memoization.java.git/memoization-guava</connection> <developerConnection>scm:git:git@github.com:sebhoss/memoization.java.git/memoization-guava</developerConnection> <url>https://github.com/sebhoss/memoization.java/memoization-guava</url> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/sebhoss/memoization.java/issues</url> </issueManagement> <ciManagement> <system>Travis</system> <url>https://travis-ci.org/sebhoss/memoization.java</url> </ciManagement> <distributionManagement> <repository> <id>${release-id}</id> <url>${release-url}</url> </repository> <snapshotRepository> <id>${staging-id}</id> <url>${staging-url}</url> </snapshotRepository> <site> <id>github</id> <name>GitHub Pages</name> <url>https://seb.xn--ho-hia.de/memoization.java/memoization-guava/</url> </site> </distributionManagement> <dependencies> <dependency> <groupId>de.xn--ho-hia.memoization</groupId> <artifactId>memoization-core</artifactId> <version>2.0.0-20160802182936</version> <scope>compile</scope> </dependency> <dependency> <groupId>de.xn--ho-hia.quality</groupId> <artifactId>suppress-warnings</artifactId> <version>[4.0.0,5.0.0)</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>19.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.eclipse.jdt</groupId> <artifactId>org.eclipse.jdt.annotation</artifactId> <version>2.0.0</version> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> </plugin> </plugins> </build> </project>