caffeine
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> <version>3.1.8</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> <version>3.1.8</version> <name>Caffeine cache</name> <description>A high performance caching library</description> <url>https://github.com/ben-manes/caffeine</url> <inceptionYear>2014</inceptionYear> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>ben-manes</id> <name>Ben Manes</name> <email>ben.manes@gmail.com</email> <roles> <role>owner</role> <role>developer</role> </roles> </developer> </developers> <scm> <connection>scm:git:https://github.com/ben-manes/caffeine.git</connection> <developerConnection>scm:git:ssh://git@github.com/ben-manes/caffeine.git</developerConnection> <url>https://github.com/ben-manes/caffeine</url> </scm> <dependencies> <dependency> <groupId>org.checkerframework</groupId> <artifactId>checker-qual</artifactId> <version>3.37.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.google.errorprone</groupId> <artifactId>error_prone_annotations</artifactId> <version>2.21.1</version> <scope>compile</scope> </dependency> </dependencies> </project>