1 Star 0 Fork 2

yins / 分布式锁

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 1.43 KB
一键复制 编辑 原始数据 按行查看 历史
yins 提交于 2021-11-08 20:36 . 修改项目结构
<?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">
<groupId>com.lewei.open</groupId>
<artifactId>distributed-lock</artifactId>
<version>0.1-SNAPSHOT</version>
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<description>distributed lock</description>
<modules>
<module>distributed-lock-core</module>
<module>distributed-lock-redis</module>
<module>distributed-lock-zookeeper</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<version>2.4.2</version>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5</version>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
Java
1
https://gitee.com/yinshi1993/distributed-lock.git
git@gitee.com:yinshi1993/distributed-lock.git
yinshi1993
distributed-lock
分布式锁
master

搜索帮助