1 Star 0 Fork 0

阿超Bug便利店/fast-cacheable-starter

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 3.40 KB
一键复制 编辑 原始数据 按行查看 历史
阿超Bug便利店 提交于 2021-03-28 18:06 . [2021/03/28]
<?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>
<groupId>pers.chao</groupId>
<artifactId>fast-cacheable-starter</artifactId>
<version>0.1.0-SNAPSHOT</version>
<description>The project of cache starter for operating redis data structure more finely by using custom annotation. Configuring several simple options and using annotation(Cache) and other structure annotation such as (CacheList) to help you to operate redis cache.</description>
<properties>
<spring.boot.version>2.3.4.RELEASE</spring.boot.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>pers.chao</groupId>
<artifactId>a-kit-utils</artifactId>
<version>0.0.4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
<version>${spring.boot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
<version>${spring.boot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<optional>true</optional>
<version>${spring.boot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<version>${spring.boot.version}</version>
<exclusions>
<exclusion>
<artifactId>slf4j-api</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
</exclusions>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-pool2 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
<version>2.9.0</version>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring.boot.version}</version>
<optional>true</optional>
</dependency>
</dependencies>
</dependencyManagement>
<distributionManagement>
<repository>
<id>nexus-release</id>
<name>Nexus Maven Release</name>
<url>http://81.68.69.207:10000/repository/default_repository_hosted/</url>
</repository>
<snapshotRepository>
<id>nexus-snapshots</id>
<name>Nexus Maven Snapshot</name>
<url>http://81.68.69.207:10000/repository/default_repository_snapshot/</url>
<uniqueVersion>true</uniqueVersion>
</snapshotRepository>
</distributionManagement>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/woo_chaos/fast-cacheable-starter.git
git@gitee.com:woo_chaos/fast-cacheable-starter.git
woo_chaos
fast-cacheable-starter
fast-cacheable-starter
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385