You can download concurrentlinkedhashmap-lru-1.4.2.jar in this page.
The Apache Software License, Version 2.0
concurrentlinkedhashmap-lru-1.4.2.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.googlecode.concurrentlinkedhashmap/concurrentlinkedhashmap-lru/pom.properties META-INF/maven/com.googlecode.concurrentlinkedhashmap/concurrentlinkedhashmap-lru/pom.xml com.googlecode.concurrentlinkedhashmap.ConcurrentHashMapV8.class com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap.class com.googlecode.concurrentlinkedhashmap.EntryWeigher.class com.googlecode.concurrentlinkedhashmap.EvictionListener.class com.googlecode.concurrentlinkedhashmap.Linked.class com.googlecode.concurrentlinkedhashmap.LinkedDeque.class com.googlecode.concurrentlinkedhashmap.Weigher.class com.googlecode.concurrentlinkedhashmap.Weighers.class
concurrentlinkedhashmap-lru-1.4.2.pom file content.
<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> <groupId>com.googlecode.concurrentlinkedhashmap</groupId> <artifactId>concurrentlinkedhashmap-lru</artifactId> <packaging>jar</packaging> <name>ConcurrentLinkedHashMap</name> <version>1.4.2</version> <description> A high performance version of java.util.LinkedHashMap for use as a software cache. </description> <url>http://code.google.com/p/concurrentlinkedhashmap</url> <inceptionYear>2008</inceptionYear> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <prerequisites> <maven>3.0.1</maven> </prerequisites> <scm> <url>http://code.google.com/p/concurrentlinkedhashmap/source/browse</url> <connection>scm:git:https://code.google.com/p/concurrentlinkedhashmap</connection> <developerConnection>scm:git:https://code.google.com/p/concurrentlinkedhashmap</developerConnection> </scm> <issueManagement> <system>code.google.com</system> <url>http://code.google.com/p/concurrentlinkedhashmap/issues</url> </issueManagement> <developers> <developer> <name>Ben Manes</name> <email>ben.manes@gmail.com</email> <organization>Google</organization> <organizationUrl>http://www.google.com</organizationUrl> <roles> <role>owner</role> <role>developer</role> </roles> <timezone>-8</timezone> </developer> </developers> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <properties> <jdk.version>java16</jdk.version> <java.version>1.6</java.version> <targetJdk>${java.version}</targetJdk> </properties> <dependencies> <!-- Concurrency annotations for documentation only; required only at compile time --> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>2.0.1</version> <scope>provided</scope> </dependency> <!-- Unit testing dependencies --> <dependency> <groupId>com.google.caliper</groupId> <artifactId>caliper</artifactId> <version>1.0-beta-1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.jayway.awaitility</groupId> <artifactId>awaitility</artifactId> <version>1.3.5</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.github.stephenc.high-scale-lib</groupId> <artifactId>high-scale-lib</artifactId> <version>1.1.4</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>14.0.1</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.6</version> <scope>test</scope> </dependency> <dependency> <groupId>net.sf.ehcache</groupId> <artifactId>ehcache</artifactId> <version>2.7.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.cachebench</groupId> <artifactId>cache-benchmark</artifactId> <version>r7903</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>1.3.RC2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.0.1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.twitter</groupId> <artifactId>jsr166e</artifactId> <version>1.0.0</version> <scope>test</scope> </dependency> </dependencies> <build> <finalName>${project.artifactId}-${project.version}</finalName> <extensions> <extension> <groupId>org.jvnet.wagon-svn</groupId> <artifactId>wagon-svn</artifactId> <version>1.9</version> </extension> </extensions> <plugins> <!-- Java compiler --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.2</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> <compilerArgument>-Xlint:all -Werror</compilerArgument> </configuration> </plugin> <!-- Add OSGi Manifest metadata --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.5</version> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.5.3</version> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> <configuration> <instructions> <Export-Package>com.googlecode.concurrentlinkedhashmap.*</Export-Package> <Import-Package>sun.misc.*;resolution:=optional</Import-Package> </instructions> </configuration> </plugin> <!-- Enforce JDK version compatibility --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>animal-sniffer-maven-plugin</artifactId> <version>1.13</version> <configuration> <signature> <groupId>org.codehaus.mojo.signature</groupId> <artifactId>${jdk.version}-sun</artifactId> <version>1.0</version> </signature> </configuration> <executions> <execution> <id>check-${jdk.version}-sun</id> <phase>compile</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <!-- Create source jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Bootstrap Unit Tests --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.18</version> <configuration> <suiteXmlFiles> <suiteXmlFile>src/test/resources/testng.yaml</suiteXmlFile> </suiteXmlFiles> <groups>development</groups> </configuration> </plugin> <!-- Generates a Maven site --> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.4</version> <executions> <execution> <id>attach-descriptor</id> <goals> <goal>attach-descriptor</goal> </goals> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <versionRange>[1.0.0,)</versionRange> <goals> <goal>enforce</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.13</version> <configuration> <configLocation>src/test/resources/checkstyle.xml</configLocation> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>2.5</version> <configuration> <aggregate>true</aggregate> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>3.3</version> <configuration> <verbose>true</verbose> <!-- CPD duplication detection --> <minimumTokens>120</minimumTokens> <!-- Severity: highest = 0, lowest = 5 --> <failurePriority>0</failurePriority> <rulesets> <ruleset>src/test/resources/pmd.xml</ruleset> </rulesets> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.18</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.6</version> <configuration> <check> <branchRate>85</branchRate> <lineRate>85</lineRate> <haltOnFailure>true</haltOnFailure> <totalBranchRate>85</totalBranchRate> <totalLineRate>85</totalLineRate> <packageLineRate>85</packageLineRate> <packageBranchRate>85</packageBranchRate> <regexes> <regex> <pattern>com.googlecode.concurrentlinkedhashmap.*</pattern> <branchRate>90</branchRate> <lineRate>80</lineRate> </regex> </regexes> </check> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>emma-maven-plugin</artifactId> <version>1.0-alpha-3</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>3.0.0</version> <configuration> <threshold>Low</threshold> <effort>Max</effort> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>taglist-maven-plugin</artifactId> <version>2.4</version> </plugin> </plugins> </reporting> <profiles> <profile> <id>cachebench</id> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <groups>cachebench</groups> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>caliper</id> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <groups>caliper</groups> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>development</id> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <groups>development</groups> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>efficiency</id> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <groups>efficiency</groups> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>load</id> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <groups>load</groups> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>perfHash</id> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <groups>perfHash</groups> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>experimental</id> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <groups>experimental</groups> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>
<dependency> <groupId>com.googlecode.concurrentlinkedhashmap</groupId> <artifactId>concurrentlinkedhashmap-lru</artifactId> <version>1.4.2</version> </dependency>
If you think the following concurrentlinkedhashmap-lru-1.4.2.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download concurrentlinkedhashmap-lru-1.4.2.jar file