assembly-cache
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>top.osjf</groupId> <artifactId>assembly-cache</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>top.osjf</groupId> <artifactId>assembly</artifactId> <version>2.0.3</version> </parent> <artifactId>assembly-cache</artifactId> <version>1.1.4</version> <packaging>jar</packaging> <description>Non application side lightweight cache collection.</description> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <util>1.1.3</util> <cache.help.expiringmap>0.5.11</cache.help.expiringmap> </properties> <dependencies> <dependency> <groupId>net.jodah</groupId> <artifactId>expiringmap</artifactId> <version>${cache.help.expiringmap}</version> </dependency> <dependency> <groupId>top.osjf</groupId> <artifactId>assembly-util</artifactId> <version>${util}</version> </dependency> </dependencies> </project>