You can download caffeine-2.4.0.jar in this page.
The Apache Software License, Version 2.0
caffeine-2.4.0.jar file has the following types.
META-INF/MANIFEST.MF com.github.benmanes.caffeine.SCQHeader.class com.github.benmanes.caffeine.SingleConsumerQueue.class com.github.benmanes.caffeine.base.UnsafeAccess.class com.github.benmanes.caffeine.cache.AbstractLinkedDeque.class com.github.benmanes.caffeine.cache.AccessOrderDeque.class com.github.benmanes.caffeine.cache.Async.class com.github.benmanes.caffeine.cache.AsyncCacheLoader.class com.github.benmanes.caffeine.cache.AsyncLoadingCache.class com.github.benmanes.caffeine.cache.BBHeader.class com.github.benmanes.caffeine.cache.BLCHeader.class com.github.benmanes.caffeine.cache.BaseMpscLinkedArrayQueue.class com.github.benmanes.caffeine.cache.BaseMpscLinkedArrayQueueColdProducerFields.class com.github.benmanes.caffeine.cache.BaseMpscLinkedArrayQueueConsumerFields.class com.github.benmanes.caffeine.cache.BaseMpscLinkedArrayQueuePad1.class com.github.benmanes.caffeine.cache.BaseMpscLinkedArrayQueuePad2.class com.github.benmanes.caffeine.cache.BaseMpscLinkedArrayQueuePad3.class com.github.benmanes.caffeine.cache.BaseMpscLinkedArrayQueueProducerFields.class com.github.benmanes.caffeine.cache.BoundedBuffer.class com.github.benmanes.caffeine.cache.BoundedLocalCache.class com.github.benmanes.caffeine.cache.BoundedWeigher.class com.github.benmanes.caffeine.cache.Buffer.class com.github.benmanes.caffeine.cache.Cache.class com.github.benmanes.caffeine.cache.CacheLoader.class com.github.benmanes.caffeine.cache.CacheWriter.class com.github.benmanes.caffeine.cache.Caffeine.class com.github.benmanes.caffeine.cache.CaffeineSpec.class com.github.benmanes.caffeine.cache.DisabledBuffer.class com.github.benmanes.caffeine.cache.DisabledTicker.class com.github.benmanes.caffeine.cache.DisabledWriter.class com.github.benmanes.caffeine.cache.FrequencySketch.class com.github.benmanes.caffeine.cache.LinkedDeque.class com.github.benmanes.caffeine.cache.LoadingCache.class com.github.benmanes.caffeine.cache.LocalAsyncLoadingCache.class com.github.benmanes.caffeine.cache.LocalCache.class com.github.benmanes.caffeine.cache.LocalCacheFactory.class com.github.benmanes.caffeine.cache.LocalLoadingCache.class com.github.benmanes.caffeine.cache.LocalManualCache.class com.github.benmanes.caffeine.cache.MpscChunkedArrayQueue.class com.github.benmanes.caffeine.cache.MpscChunkedArrayQueueColdProducerFields.class com.github.benmanes.caffeine.cache.MpscGrowableArrayQueue.class com.github.benmanes.caffeine.cache.Node.class com.github.benmanes.caffeine.cache.NodeFactory.class com.github.benmanes.caffeine.cache.NonReentrantLock.class com.github.benmanes.caffeine.cache.Policy.class com.github.benmanes.caffeine.cache.References.class com.github.benmanes.caffeine.cache.RemovalCause.class com.github.benmanes.caffeine.cache.RemovalListener.class com.github.benmanes.caffeine.cache.SerializationProxy.class com.github.benmanes.caffeine.cache.SingletonWeigher.class com.github.benmanes.caffeine.cache.StripedBuffer.class com.github.benmanes.caffeine.cache.SystemTicker.class com.github.benmanes.caffeine.cache.Ticker.class com.github.benmanes.caffeine.cache.UnboundedLocalCache.class com.github.benmanes.caffeine.cache.UnsafeRefArrayAccess.class com.github.benmanes.caffeine.cache.Weigher.class com.github.benmanes.caffeine.cache.WriteOrderDeque.class com.github.benmanes.caffeine.cache.WriteThroughEntry.class com.github.benmanes.caffeine.cache.stats.CacheStats.class com.github.benmanes.caffeine.cache.stats.ConcurrentStatsCounter.class com.github.benmanes.caffeine.cache.stats.DisabledStatsCounter.class com.github.benmanes.caffeine.cache.stats.GuardedStatsCounter.class com.github.benmanes.caffeine.cache.stats.StatsCounter.class
caffeine-2.4.0.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <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>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> <version>2.4.0</version> <name>Caffeine cache</name> <description>A high performance caching library for Java 8+</description> <url>https://github.com/ben-manes/caffeine</url> <inceptionYear>2014</inceptionYear> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://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:https://ben-manes@github.com/ben-manes/caffeine.git</connection> <developerConnection>scm:git://github.com/ben-manes/caffeine.git</developerConnection> <url>https://github.com/ben-manes/caffeine</url> </scm> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>21.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>2.7.9</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>*</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>java-hamcrest</artifactId> <version>2.0.0.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> <version>2.0.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>*</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.felix</groupId> <artifactId>org.apache.felix.framework</artifactId> <version>5.6.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.ops4j.pax.exam</groupId> <artifactId>pax-exam-junit4</artifactId> <version>4.10.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.brianfrankcooper.ycsb</groupId> <artifactId>core</artifactId> <version>0.12.0</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.10</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>*</artifactId> <groupId>junit</groupId> </exclusion> <exclusion> <artifactId>*</artifactId> <groupId>guice</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <version>4.1.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jctools</groupId> <artifactId>jctools-core</artifactId> <version>2.0.1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava-testlib</artifactId> <version>21.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>*</artifactId> <groupId>com.google.truth</groupId> </exclusion> <exclusion> <artifactId>*</artifactId> <groupId>junit</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.errorprone</groupId> <artifactId>error_prone_annotations</artifactId> <version>2.0.17</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.ops4j.pax.exam</groupId> <artifactId>pax-exam-container-native</artifactId> <version>4.10.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.ops4j.pax.exam</groupId> <artifactId>pax-exam-link-mvn</artifactId> <version>4.10.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.ops4j.pax.url</groupId> <artifactId>pax-url-aether</artifactId> <version>2.5.2</version> <scope>test</scope> </dependency> </dependencies> </project>
<dependency> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> <version>2.4.0</version> </dependency>
If you think the following caffeine-2.4.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download caffeine-2.4.0.jar file