| 组织ID: |
com.github.nmuzhichin |
| 项目ID: |
jsonrpc-cache-extension |
| 版本: |
1.0.2.0 |
| 最后修改时间: |
2019-12-05 01:32:06 |
| 包类型: |
jar |
| 大小: |
4.43KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.github.nmuzhichin</groupId>
<artifactId>jsonrpc-cache-extension</artifactId>
<version>1.0.2.0</version>
</dependency>
|
| Gradle引入代码: |
com.github.nmuzhichin:jsonrpc-cache-extension:1.0.2.0
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>jsonrpc2</artifactId>
<groupId>com.github.nmuzhichin</groupId>
<version>1.0.2.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>jsonrpc-cache-extension</artifactId>
<properties>
<caffeine.version>2.8.0</caffeine.version>
<cache-api.version>1.1.1</cache-api.version>
<guava.version>28.0-jre</guava.version>
</properties>
<dependencies>
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
<version>${caffeine.version}</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>javax.cache</groupId>
<artifactId>cache-api</artifactId>
<version>${cache-api.version}</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.github.nmuzhichin</groupId>
<artifactId>jsonrpc-core</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
com.github.nmuzhichin.jsonrpc.cache.GuavaCache.class
com.github.nmuzhichin.jsonrpc.cache.CaffeineCache.class
com.github.nmuzhichin.jsonrpc.cache.JavaxCache.class
META-INF/maven/com.github.nmuzhichin/jsonrpc-cache-extension/pom.xml
META-INF/maven/com.github.nmuzhichin/jsonrpc-cache-extension/pom.properties
|
| 依赖Jar: |
caffeine-${caffeine.version}.jar
/com.github.ben-manes.caffeine/caffeine/${caffeine.version}
查看caffeine所有版本文件
cache-api-${cache-api.version}.jar
/javax.cache/cache-api/${cache-api.version}
查看cache-api所有版本文件
guava-${guava.version}.jar
/com.google.guava/guava/${guava.version}
查看guava所有版本文件
jsonrpc-core-${project.version}.jar
/com.github.nmuzhichin/jsonrpc-core/${project.version}
查看jsonrpc-core所有版本文件
|