From 869889b87def69789215564bdb76637bfeca9c8b Mon Sep 17 00:00:00 2001 From: Hanserwei Date: Thu, 9 Oct 2025 10:36:39 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AD=90=E6=A8=A1=E5=9D=97=E6=89=93=E5=8C=85?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../.flattened-pom.xml | 37 ++++++ han-note-kv/.flattened-pom.xml | 26 ++++ .../han-note-kv-api/.flattened-pom.xml | 36 ++++++ .../han-note-kv-biz/.flattened-pom.xml | 57 +++++++++ han-note-note/.flattened-pom.xml | 24 ++++ .../han-note-note-api/.flattened-pom.xml | 24 ++++ .../han-note-note-biz/.flattened-pom.xml | 114 ++++++++++++++++++ .../han-note-user-biz/.flattened-pom.xml | 9 ++ 8 files changed, 327 insertions(+) create mode 100644 han-note-distributed-id-generator/han-note-distributed-id-generator-api/.flattened-pom.xml create mode 100644 han-note-kv/.flattened-pom.xml create mode 100644 han-note-kv/han-note-kv-api/.flattened-pom.xml create mode 100644 han-note-kv/han-note-kv-biz/.flattened-pom.xml create mode 100644 han-note-note/.flattened-pom.xml create mode 100644 han-note-note/han-note-note-api/.flattened-pom.xml create mode 100644 han-note-note/han-note-note-biz/.flattened-pom.xml diff --git a/han-note-distributed-id-generator/han-note-distributed-id-generator-api/.flattened-pom.xml b/han-note-distributed-id-generator/han-note-distributed-id-generator-api/.flattened-pom.xml new file mode 100644 index 0000000..b44019b --- /dev/null +++ b/han-note-distributed-id-generator/han-note-distributed-id-generator-api/.flattened-pom.xml @@ -0,0 +1,37 @@ + + 4.0.0 + + + com.hanserwei + han-note-distributed-id-generator + 0.0.1-SNAPSHOT + + + + jar + + han-note-distributed-id-generator-api + ${project.artifactId} + RPC层, 供其他服务调用 + + + + com.hanserwei + hanserwei-common + + + + + org.springframework.cloud + spring-cloud-starter-openfeign + + + + + org.springframework.cloud + spring-cloud-starter-loadbalancer + + + + diff --git a/han-note-kv/.flattened-pom.xml b/han-note-kv/.flattened-pom.xml new file mode 100644 index 0000000..b4ae0f5 --- /dev/null +++ b/han-note-kv/.flattened-pom.xml @@ -0,0 +1,26 @@ + + 4.0.0 + + + com.hanserwei + han-note + 0.0.1-SNAPSHOT + + + + pom + + + + han-note-kv-api + han-note-kv-biz + + + han-note-kv + + ${project.artifactId} + + Key-Value 键值存储服务 + + diff --git a/han-note-kv/han-note-kv-api/.flattened-pom.xml b/han-note-kv/han-note-kv-api/.flattened-pom.xml new file mode 100644 index 0000000..7e3d79e --- /dev/null +++ b/han-note-kv/han-note-kv-api/.flattened-pom.xml @@ -0,0 +1,36 @@ + + 4.0.0 + + + com.hanserwei + han-note-kv + 0.0.1-SNAPSHOT + + + + jar + + han-note-kv-api + ${project.artifactId} + RPC层, 供其他服务调用 + + + + com.hanserwei + hanserwei-common + + + + org.springframework.cloud + spring-cloud-starter-openfeign + + + + + org.springframework.cloud + spring-cloud-starter-loadbalancer + + + + diff --git a/han-note-kv/han-note-kv-biz/.flattened-pom.xml b/han-note-kv/han-note-kv-biz/.flattened-pom.xml new file mode 100644 index 0000000..81558a0 --- /dev/null +++ b/han-note-kv/han-note-kv-biz/.flattened-pom.xml @@ -0,0 +1,57 @@ + + 4.0.0 + + + com.hanserwei + han-note-kv + 0.0.1-SNAPSHOT + + + + jar + + han-note-kv-biz + ${project.artifactId} + Key-Value 键值存储业务层 + + + + com.hanserwei + hanserwei-common + + + + org.springframework.boot + spring-boot-starter-web + + + + org.springframework.boot + spring-boot-starter-test + test + + + + org.springframework.cloud + spring-cloud-starter-bootstrap + + + + + com.alibaba.cloud + spring-cloud-starter-alibaba-nacos-discovery + + + + + org.springframework.boot + spring-boot-starter-data-cassandra + + + + com.hanserwei + han-note-kv-api + + + diff --git a/han-note-note/.flattened-pom.xml b/han-note-note/.flattened-pom.xml new file mode 100644 index 0000000..0160eba --- /dev/null +++ b/han-note-note/.flattened-pom.xml @@ -0,0 +1,24 @@ + + 4.0.0 + + + com.hanserwei + han-note + 0.0.1-SNAPSHOT + + + + pom + + + + han-note-note-api + + + han-note-note + + ${project.artifactId} + + 笔记服务 + diff --git a/han-note-note/han-note-note-api/.flattened-pom.xml b/han-note-note/han-note-note-api/.flattened-pom.xml new file mode 100644 index 0000000..1860861 --- /dev/null +++ b/han-note-note/han-note-note-api/.flattened-pom.xml @@ -0,0 +1,24 @@ + + 4.0.0 + + + com.hanserwei + han-note-note + 0.0.1-SNAPSHOT + + + + jar + + han-note-api + ${project.artifactId} + RPC层, 供其他服务调用 + + + + com.hanserwei + hanserwei-common + + + diff --git a/han-note-note/han-note-note-biz/.flattened-pom.xml b/han-note-note/han-note-note-biz/.flattened-pom.xml new file mode 100644 index 0000000..0ed6571 --- /dev/null +++ b/han-note-note/han-note-note-biz/.flattened-pom.xml @@ -0,0 +1,114 @@ + + 4.0.0 + + + com.hanserwei + han-note-note + 0.0.1-SNAPSHOT + + + + jar + + han-note-note-biz + ${project.artifactId} + 笔记服务业务层 + + + + com.hanserwei + hanserwei-common + + + + + com.hanserwei + hanserwei-spring-boot-starter-biz-operationlog + + + + + com.hanserwei + hanserwei-spring-boot-starter-biz-context + + + + + com.hanserwei + hanserwei-spring-boot-starter-jackson + + + + org.springframework.boot + spring-boot-starter-web + + + + org.springframework.boot + spring-boot-starter-test + test + + + + + com.baomidou + mybatis-plus-spring-boot3-starter + + + + + com.mysql + mysql-connector-j + + + + + com.alibaba + druid-spring-boot-3-starter + + + + org.springframework.cloud + spring-cloud-starter-bootstrap + + + + + com.alibaba.cloud + spring-cloud-starter-alibaba-nacos-discovery + + + + + org.springframework.boot + spring-boot-starter-data-redis + + + + + org.apache.commons + commons-pool2 + + + + com.hanserwei + han-note-kv-api + + + + com.hanserwei + han-note-distributed-id-generator-api + + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + diff --git a/han-note-user/han-note-user-biz/.flattened-pom.xml b/han-note-user/han-note-user-biz/.flattened-pom.xml index 0ef95ba..816e23b 100644 --- a/han-note-user/han-note-user-biz/.flattened-pom.xml +++ b/han-note-user/han-note-user-biz/.flattened-pom.xml @@ -84,6 +84,15 @@ com.hanserwei han-note-user-api + + com.hanserwei + han-note-distributed-id-generator-api + + + + com.github.ben-manes.caffeine + caffeine +