1 Star 0 Fork 46

ye367/l2cache

forked from sky/l2cache 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 5.55 KB
一键复制 编辑 原始数据 按行查看 历史
WG-zengjucai 提交于 2021-09-16 15:32 . 版本升级
<?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>com.coy.l2cache</groupId>
<artifactId>l2cache</artifactId>
<name>l2cache</name>
<version>1.0.33-SNAPSHOT</version>
<packaging>pom</packaging>
<description>二级缓存组件</description>
<modules>
<module>l2cache-core</module>
<module>l2cache-spring-boot-starter</module>
<module>l2cache-example</module>
</modules>
<properties>
<!-- proj`ect -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<!-- dependencies -->
<spring-boot.version>2.3.0.RELEASE</spring-boot.version>
<caffeine.version>2.8.4</caffeine.version>
<guava.version>30.0-jre</guava.version>
<redisson.version>3.13.0</redisson.version>
<kafka-clients.version>2.0.1</kafka-clients.version>
<lombok.version>1.18.12</lombok.version>
<junit.version>4.13.1</junit.version>
</properties>
<dependencyManagement>
<dependencies>
<!-- spring-boot -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
<version>${caffeine.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson</artifactId>
<version>${redisson.version}</version>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
<version>${kafka-clients.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<!-- 编译打包 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<!-- 生成源码 -->
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- 该插件用于复制指定的文件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<!-- 打包时跳过测试 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
<!-- 发布到maven私服 -->
<distributionManagement>
<repository>
<id>maven-releases</id>
<name>youxuan-central</name>
<url>http://nexus.weeget.cn/repository/maven-releases/</url>
</repository>
<snapshotRepository>
<id>maven-snapshots</id>
<name>youxuan-central</name>
<url>http://nexus.weeget.cn/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<!--私服 快照支持-->
<repositories>
<repository>
<id>maven-weeget</id>
<name>internal nexus repository</name>
<layout>default</layout>
<url>http://nexus.weeget.cn/repository/maven-public</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/yerongli367/l2cache.git
[email protected]:yerongli367/l2cache.git
yerongli367
l2cache
l2cache
master

搜索帮助