From 8ceeb0e0579fff6c6ba3ae5a5d914e96883d725d Mon Sep 17 00:00:00 2001 From: "Yangkai.Shen" <237497819@qq.com> Date: Fri, 2 Sep 2022 13:53:29 +0800 Subject: [PATCH] =?UTF-8?q?:building=5Fconstruction:=20=E6=96=B0=E5=A2=9E?= =?UTF-8?q?=E5=88=86=E5=B8=83=E5=BC=8F=E9=94=81=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../demo-distributed-lock-api/pom.xml | 19 +++++++++++++++++++ .../demo-distributed-lock-mysql/pom.xml | 19 +++++++++++++++++++ .../demo-distributed-lock-redis/pom.xml | 19 +++++++++++++++++++ .../demo-distributed-lock-redisson/pom.xml | 19 +++++++++++++++++++ .../demo-distributed-lock-zookeeper/pom.xml | 19 +++++++++++++++++++ demo-distributed-lock/pom.xml | 8 ++++++++ 6 files changed, 103 insertions(+) create mode 100644 demo-distributed-lock/demo-distributed-lock-api/pom.xml create mode 100644 demo-distributed-lock/demo-distributed-lock-mysql/pom.xml create mode 100644 demo-distributed-lock/demo-distributed-lock-redis/pom.xml create mode 100644 demo-distributed-lock/demo-distributed-lock-redisson/pom.xml create mode 100644 demo-distributed-lock/demo-distributed-lock-zookeeper/pom.xml diff --git a/demo-distributed-lock/demo-distributed-lock-api/pom.xml b/demo-distributed-lock/demo-distributed-lock-api/pom.xml new file mode 100644 index 0000000..7ff9bb3 --- /dev/null +++ b/demo-distributed-lock/demo-distributed-lock-api/pom.xml @@ -0,0 +1,19 @@ + + + + com.xkcoding + demo-distributed-lock + 1.0.0-SNAPSHOT + + + 4.0.0 + + demo-distributed-lock-api + + + 17 + + + diff --git a/demo-distributed-lock/demo-distributed-lock-mysql/pom.xml b/demo-distributed-lock/demo-distributed-lock-mysql/pom.xml new file mode 100644 index 0000000..e81e88e --- /dev/null +++ b/demo-distributed-lock/demo-distributed-lock-mysql/pom.xml @@ -0,0 +1,19 @@ + + + + com.xkcoding + demo-distributed-lock + 1.0.0-SNAPSHOT + + + 4.0.0 + + demo-distributed-lock-mysql + + + 17 + + + diff --git a/demo-distributed-lock/demo-distributed-lock-redis/pom.xml b/demo-distributed-lock/demo-distributed-lock-redis/pom.xml new file mode 100644 index 0000000..35f7e5c --- /dev/null +++ b/demo-distributed-lock/demo-distributed-lock-redis/pom.xml @@ -0,0 +1,19 @@ + + + + com.xkcoding + demo-distributed-lock + 1.0.0-SNAPSHOT + + + 4.0.0 + + demo-distributed-lock-redis + + + 17 + + + diff --git a/demo-distributed-lock/demo-distributed-lock-redisson/pom.xml b/demo-distributed-lock/demo-distributed-lock-redisson/pom.xml new file mode 100644 index 0000000..1a9730a --- /dev/null +++ b/demo-distributed-lock/demo-distributed-lock-redisson/pom.xml @@ -0,0 +1,19 @@ + + + + com.xkcoding + demo-distributed-lock + 1.0.0-SNAPSHOT + + + 4.0.0 + + demo-distributed-lock-redisson + + + 17 + + + diff --git a/demo-distributed-lock/demo-distributed-lock-zookeeper/pom.xml b/demo-distributed-lock/demo-distributed-lock-zookeeper/pom.xml new file mode 100644 index 0000000..dceb0a0 --- /dev/null +++ b/demo-distributed-lock/demo-distributed-lock-zookeeper/pom.xml @@ -0,0 +1,19 @@ + + + + com.xkcoding + demo-distributed-lock + 1.0.0-SNAPSHOT + + + 4.0.0 + + demo-distributed-lock-zookeeper + + + 17 + + + diff --git a/demo-distributed-lock/pom.xml b/demo-distributed-lock/pom.xml index 224e52a..ca50e17 100644 --- a/demo-distributed-lock/pom.xml +++ b/demo-distributed-lock/pom.xml @@ -18,4 +18,12 @@ 17 + + demo-distributed-lock-api + demo-distributed-lock-redis + demo-distributed-lock-redisson + demo-distributed-lock-zookeeper + demo-distributed-lock-mysql + +