java_util_concurrent_chm
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.stephenc.high-scale-lib</groupId>
<artifactId>java_util_concurrent_chm</artifactId>
<version>1.1.4</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<artifactId>high-scale-lib-parent</artifactId>
<groupId>com.github.stephenc.high-scale-lib</groupId>
<version>1.1.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>java_util_concurrent_chm</artifactId>
<name>Replacement java.util.concurrent.ConcurrentHashMap</name>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>true</minimizeJar>
<relocations>
<relocation>
<pattern>org.cliffc.high_scale_lib</pattern>
<shadedPattern>com.github.stephenc.high_scale_lib.java_util_concurrent_chm</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>