From ba00ccd06aed67e4c95fc00d446d646251ed45b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BA=84=E9=94=90=E6=B3=A2?= <10549902+zhuangruibo@user.noreply.gitee.com> Date: Thu, 21 May 2026 15:16:28 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=E5=B7=A5=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Libs/install-to-maven.ps1 | 29 +++-- Libs/zdxt-common-core-5.6.0.pom | 73 ++++++++++++ Libs/zdxt-common-doc-5.6.0.pom | 36 ++++++ Libs/zdxt-common-encrypt-5.6.0.pom | 51 ++++++++ Libs/zdxt-common-excel-5.6.0.pom | 24 ++++ Libs/zdxt-common-idempotent-5.6.0.pom | 32 +++++ Libs/zdxt-common-json-5.6.0.pom | 28 +++++ Libs/zdxt-common-log-5.6.0.pom | 24 ++++ Libs/zdxt-common-mail-5.6.0.pom | 28 +++++ Libs/zdxt-common-mybatis-5.6.0.pom | 40 +++++++ Libs/zdxt-common-oss-5.6.0.pom | 50 ++++++++ Libs/zdxt-common-quartz-5.6.0.pom | 28 +++++ Libs/zdxt-common-ratelimiter-5.6.0.pom | 24 ++++ Libs/zdxt-common-redis-5.6.0.pom | 41 +++++++ Libs/zdxt-common-satoken-5.6.0.pom | 35 ++++++ Libs/zdxt-common-security-5.6.0.pom | 20 ++++ Libs/zdxt-common-sensitive-5.6.0.pom | 20 ++++ Libs/zdxt-common-sms-5.6.0.pom | 24 ++++ Libs/zdxt-common-social-5.6.0.pom | 28 +++++ Libs/zdxt-common-sse-5.6.0.pom | 32 +++++ Libs/zdxt-common-tenant-5.6.0.pom | 25 ++++ Libs/zdxt-common-translation-5.6.0.pom | 20 ++++ Libs/zdxt-common-web-5.6.0.pom | 46 +++++++ Libs/zdxt-common-websocket-5.6.0.pom | 42 +++++++ Libs/zdxt-enforcement-code-common-5.6.0.pom | 125 ++++++++++++++++++++ Libs/zdxt-system-5.6.0.pom | 84 +++++++++++++ zdxt-modules/zdxt-enforcement-nos/pom.xml | 2 +- 27 files changed, 1000 insertions(+), 11 deletions(-) create mode 100644 Libs/zdxt-common-core-5.6.0.pom create mode 100644 Libs/zdxt-common-doc-5.6.0.pom create mode 100644 Libs/zdxt-common-encrypt-5.6.0.pom create mode 100644 Libs/zdxt-common-excel-5.6.0.pom create mode 100644 Libs/zdxt-common-idempotent-5.6.0.pom create mode 100644 Libs/zdxt-common-json-5.6.0.pom create mode 100644 Libs/zdxt-common-log-5.6.0.pom create mode 100644 Libs/zdxt-common-mail-5.6.0.pom create mode 100644 Libs/zdxt-common-mybatis-5.6.0.pom create mode 100644 Libs/zdxt-common-oss-5.6.0.pom create mode 100644 Libs/zdxt-common-quartz-5.6.0.pom create mode 100644 Libs/zdxt-common-ratelimiter-5.6.0.pom create mode 100644 Libs/zdxt-common-redis-5.6.0.pom create mode 100644 Libs/zdxt-common-satoken-5.6.0.pom create mode 100644 Libs/zdxt-common-security-5.6.0.pom create mode 100644 Libs/zdxt-common-sensitive-5.6.0.pom create mode 100644 Libs/zdxt-common-sms-5.6.0.pom create mode 100644 Libs/zdxt-common-social-5.6.0.pom create mode 100644 Libs/zdxt-common-sse-5.6.0.pom create mode 100644 Libs/zdxt-common-tenant-5.6.0.pom create mode 100644 Libs/zdxt-common-translation-5.6.0.pom create mode 100644 Libs/zdxt-common-web-5.6.0.pom create mode 100644 Libs/zdxt-common-websocket-5.6.0.pom create mode 100644 Libs/zdxt-enforcement-code-common-5.6.0.pom create mode 100644 Libs/zdxt-system-5.6.0.pom diff --git a/Libs/install-to-maven.ps1 b/Libs/install-to-maven.ps1 index 2263ce5..3c5fed5 100644 --- a/Libs/install-to-maven.ps1 +++ b/Libs/install-to-maven.ps1 @@ -1,5 +1,6 @@ -# 将 Libs 目录下的所有 zdxt-common-*.jar 安装到本地 Maven 仓库 +# 将 Libs 目录下的所有 *.jar 安装到本地 Maven 仓库 # groupId: org.dromara, version: 5.6.0 +# 若同目录存在同名 .pom 文件,则使用真实 POM(传递依赖完整);否则自动生成空 POM。 $libsDir = $PSScriptRoot $groupId = "org.dromara" @@ -9,16 +10,24 @@ Get-ChildItem -Path $libsDir -Filter "*.jar" | ForEach-Object { $jarFile = $_.FullName # 从文件名中提取 artifactId,例如 zdxt-common-core-5.6.0.jar -> zdxt-common-core $artifactId = $_.BaseName -replace "-$version$", "" + $pomFile = Join-Path $libsDir "$artifactId-$version.pom" - Write-Host "Installing: $artifactId ($jarFile)" -ForegroundColor Cyan - - mvn install:install-file ` - "-Dfile=$jarFile" ` - "-DgroupId=$groupId" ` - "-DartifactId=$artifactId" ` - "-Dversion=$version" ` - "-Dpackaging=jar" ` - "-DgeneratePom=true" + if (Test-Path $pomFile) { + Write-Host "Installing: $artifactId (with real POM)" -ForegroundColor Cyan + mvn install:install-file ` + "-Dfile=$jarFile" ` + "-DpomFile=$pomFile" ` + "-Dpackaging=jar" + } else { + Write-Host "Installing: $artifactId (generated POM, no transitive deps)" -ForegroundColor Yellow + mvn install:install-file ` + "-Dfile=$jarFile" ` + "-DgroupId=$groupId" ` + "-DartifactId=$artifactId" ` + "-Dversion=$version" ` + "-Dpackaging=jar" ` + "-DgeneratePom=true" + } if ($LASTEXITCODE -eq 0) { Write-Host " -> OK" -ForegroundColor Green diff --git a/Libs/zdxt-common-core-5.6.0.pom b/Libs/zdxt-common-core-5.6.0.pom new file mode 100644 index 0000000..32419e8 --- /dev/null +++ b/Libs/zdxt-common-core-5.6.0.pom @@ -0,0 +1,73 @@ + + + 4.0.0 + + org.dromara + zdxt-common + 5.6.0 + + org.dromara + zdxt-common-core + 5.6.0 + zdxt-common-core 核心模块 + + + org.springframework + spring-context-support + + + org.springframework + spring-web + + + org.springframework.boot + spring-boot-starter-validation + + + org.springframework.boot + spring-boot-starter-aop + + + org.apache.commons + commons-lang3 + + + jakarta.servlet + jakarta.servlet-api + + + cn.hutool + hutool-core + + + cn.hutool + hutool-http + + + cn.hutool + hutool-extra + + + org.projectlombok + lombok + + + org.springframework.boot + spring-boot-configuration-processor + + + org.springframework.boot + spring-boot-properties-migrator + runtime + + + io.github.linpeilie + mapstruct-plus-spring-boot-starter + + + org.lionsoul + ip2region + + + diff --git a/Libs/zdxt-common-doc-5.6.0.pom b/Libs/zdxt-common-doc-5.6.0.pom new file mode 100644 index 0000000..b3982b2 --- /dev/null +++ b/Libs/zdxt-common-doc-5.6.0.pom @@ -0,0 +1,36 @@ + + + 4.0.0 + + org.dromara + zdxt-common + 5.6.0 + + org.dromara + zdxt-common-doc + 5.6.0 + zdxt-common-doc 系统接口 + + + org.dromara + zdxt-common-core + + + org.springdoc + springdoc-openapi-starter-webmvc-api + + + org.springdoc + springdoc-openapi-starter-webmvc-ui + + + com.github.therapi + therapi-runtime-javadoc + + + com.fasterxml.jackson.module + jackson-module-kotlin + + + diff --git a/Libs/zdxt-common-encrypt-5.6.0.pom b/Libs/zdxt-common-encrypt-5.6.0.pom new file mode 100644 index 0000000..52f448d --- /dev/null +++ b/Libs/zdxt-common-encrypt-5.6.0.pom @@ -0,0 +1,51 @@ + + + 4.0.0 + + org.dromara + zdxt-common + 5.6.0 + + org.dromara + zdxt-common-encrypt + 5.6.0 + zdxt-common-encrypt 数据加解密模块 + + + org.dromara + zdxt-common-core + + + org.bouncycastle + bcpkix-jdk18on + + + org.jasypt + jasypt + + + com.github.ulisesbocchio + jasypt-spring-boot-starter + + + cn.hutool + hutool-crypto + + + org.springframework + spring-webmvc + + + com.baomidou + mybatis-plus-spring-boot3-starter + + + org.mybatis + mybatis-spring + + + true + + + diff --git a/Libs/zdxt-common-excel-5.6.0.pom b/Libs/zdxt-common-excel-5.6.0.pom new file mode 100644 index 0000000..fc12a1b --- /dev/null +++ b/Libs/zdxt-common-excel-5.6.0.pom @@ -0,0 +1,24 @@ + + + 4.0.0 + + org.dromara + zdxt-common + 5.6.0 + + org.dromara + zdxt-common-excel + 5.6.0 + zdxt-common-excel + + + org.dromara + zdxt-common-json + + + cn.idev.excel + fastexcel + + + diff --git a/Libs/zdxt-common-idempotent-5.6.0.pom b/Libs/zdxt-common-idempotent-5.6.0.pom new file mode 100644 index 0000000..559bab2 --- /dev/null +++ b/Libs/zdxt-common-idempotent-5.6.0.pom @@ -0,0 +1,32 @@ + + + 4.0.0 + + org.dromara + zdxt-common + 5.6.0 + + org.dromara + zdxt-common-idempotent + 5.6.0 + zdxt-common-idempotent 幂等功能 + + + org.dromara + zdxt-common-json + + + org.dromara + zdxt-common-redis + + + cn.hutool + hutool-crypto + + + cn.dev33 + sa-token-core + + + diff --git a/Libs/zdxt-common-json-5.6.0.pom b/Libs/zdxt-common-json-5.6.0.pom new file mode 100644 index 0000000..4f5075c --- /dev/null +++ b/Libs/zdxt-common-json-5.6.0.pom @@ -0,0 +1,28 @@ + + + 4.0.0 + + org.dromara + zdxt-common + 5.6.0 + + org.dromara + zdxt-common-json + 5.6.0 + zdxt-common-json 序列化模块 + + + org.dromara + zdxt-common-core + + + com.fasterxml.jackson.core + jackson-databind + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + + + diff --git a/Libs/zdxt-common-log-5.6.0.pom b/Libs/zdxt-common-log-5.6.0.pom new file mode 100644 index 0000000..010b5be --- /dev/null +++ b/Libs/zdxt-common-log-5.6.0.pom @@ -0,0 +1,24 @@ + + + 4.0.0 + + org.dromara + zdxt-common + 5.6.0 + + org.dromara + zdxt-common-log + 5.6.0 + zdxt-common-log 日志记录 + + + org.dromara + zdxt-common-satoken + + + org.dromara + zdxt-common-json + + + diff --git a/Libs/zdxt-common-mail-5.6.0.pom b/Libs/zdxt-common-mail-5.6.0.pom new file mode 100644 index 0000000..b9f1967 --- /dev/null +++ b/Libs/zdxt-common-mail-5.6.0.pom @@ -0,0 +1,28 @@ + + + 4.0.0 + + org.dromara + zdxt-common + 5.6.0 + + org.dromara + zdxt-common-mail + 5.6.0 + zdxt-common-mail 邮件模块 + + + org.dromara + zdxt-common-core + + + jakarta.mail + jakarta.mail-api + + + org.eclipse.angus + jakarta.mail + + + diff --git a/Libs/zdxt-common-mybatis-5.6.0.pom b/Libs/zdxt-common-mybatis-5.6.0.pom new file mode 100644 index 0000000..fee6d65 --- /dev/null +++ b/Libs/zdxt-common-mybatis-5.6.0.pom @@ -0,0 +1,40 @@ + + + 4.0.0 + + org.dromara + zdxt-common + 5.6.0 + + org.dromara + zdxt-common-mybatis + 5.6.0 + zdxt-common-mybatis 数据库服务 + + + org.dromara + zdxt-common-core + + + org.dromara + zdxt-common-satoken + + + com.baomidou + dynamic-datasource-spring-boot3-starter + + + com.baomidou + mybatis-plus-spring-boot3-starter + + + com.baomidou + mybatis-plus-jsqlparser + + + p6spy + p6spy + + + diff --git a/Libs/zdxt-common-oss-5.6.0.pom b/Libs/zdxt-common-oss-5.6.0.pom new file mode 100644 index 0000000..90e8104 --- /dev/null +++ b/Libs/zdxt-common-oss-5.6.0.pom @@ -0,0 +1,50 @@ + + + 4.0.0 + + org.dromara + zdxt-common + 5.6.0 + + org.dromara + zdxt-common-oss + 5.6.0 + zdxt-common-oss oss服务 + + + org.dromara + zdxt-common-json + + + org.dromara + zdxt-common-redis + + + software.amazon.awssdk + s3 + + + software.amazon.awssdk + aws-crt-client + + + software.amazon.awssdk + apache-client + + + software.amazon.awssdk + url-connection-client + + + + + software.amazon.awssdk + netty-nio-client + + + software.amazon.awssdk + s3-transfer-manager + + + diff --git a/Libs/zdxt-common-quartz-5.6.0.pom b/Libs/zdxt-common-quartz-5.6.0.pom new file mode 100644 index 0000000..eb5df6e --- /dev/null +++ b/Libs/zdxt-common-quartz-5.6.0.pom @@ -0,0 +1,28 @@ + + + 4.0.0 + + org.dromara + zdxt-common + 5.6.0 + + org.dromara + zdxt-common-quartz + 5.6.0 + zdxt-common-quartz Quartz定时任务 + + + org.springframework.boot + spring-boot-starter-quartz + + + org.projectlombok + lombok + + + org.dromara + zdxt-common-core + + + diff --git a/Libs/zdxt-common-ratelimiter-5.6.0.pom b/Libs/zdxt-common-ratelimiter-5.6.0.pom new file mode 100644 index 0000000..40cc173 --- /dev/null +++ b/Libs/zdxt-common-ratelimiter-5.6.0.pom @@ -0,0 +1,24 @@ + + + 4.0.0 + + org.dromara + zdxt-common + 5.6.0 + + org.dromara + zdxt-common-ratelimiter + 5.6.0 + zdxt-common-ratelimiter 限流功能 + + + org.dromara + zdxt-common-core + + + org.dromara + zdxt-common-redis + + + diff --git a/Libs/zdxt-common-redis-5.6.0.pom b/Libs/zdxt-common-redis-5.6.0.pom new file mode 100644 index 0000000..4f36f22 --- /dev/null +++ b/Libs/zdxt-common-redis-5.6.0.pom @@ -0,0 +1,41 @@ + + + 4.0.0 + + org.dromara + zdxt-common + 5.6.0 + + org.dromara + zdxt-common-redis + 5.6.0 + zdxt-common-redis 缓存服务 + + + org.dromara + zdxt-common-core + + + org.redisson + redisson-spring-boot-starter + + + com.baomidou + lock4j-redisson-spring-boot-starter + + + com.github.ben-manes.caffeine + caffeine + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + + + org.apache.fory + fory-core + 0.13.1 + + + diff --git a/Libs/zdxt-common-satoken-5.6.0.pom b/Libs/zdxt-common-satoken-5.6.0.pom new file mode 100644 index 0000000..7df7d73 --- /dev/null +++ b/Libs/zdxt-common-satoken-5.6.0.pom @@ -0,0 +1,35 @@ + + + 4.0.0 + + org.dromara + zdxt-common + 5.6.0 + + org.dromara + zdxt-common-satoken + 5.6.0 + + + org.dromara + zdxt-common-core + + + org.dromara + zdxt-common-redis + + + cn.dev33 + sa-token-spring-boot3-starter + + + cn.dev33 + sa-token-jwt + + + com.github.ben-manes.caffeine + caffeine + + + diff --git a/Libs/zdxt-common-security-5.6.0.pom b/Libs/zdxt-common-security-5.6.0.pom new file mode 100644 index 0000000..8296f0a --- /dev/null +++ b/Libs/zdxt-common-security-5.6.0.pom @@ -0,0 +1,20 @@ + + + 4.0.0 + + org.dromara + zdxt-common + 5.6.0 + + org.dromara + zdxt-common-security + 5.6.0 + zdxt-common-security 安全模块 + + + org.dromara + zdxt-common-satoken + + + diff --git a/Libs/zdxt-common-sensitive-5.6.0.pom b/Libs/zdxt-common-sensitive-5.6.0.pom new file mode 100644 index 0000000..cbf2236 --- /dev/null +++ b/Libs/zdxt-common-sensitive-5.6.0.pom @@ -0,0 +1,20 @@ + + + 4.0.0 + + org.dromara + zdxt-common + 5.6.0 + + org.dromara + zdxt-common-sensitive + 5.6.0 + zdxt-common-sensitive 脱敏模块 + + + org.dromara + zdxt-common-json + + + diff --git a/Libs/zdxt-common-sms-5.6.0.pom b/Libs/zdxt-common-sms-5.6.0.pom new file mode 100644 index 0000000..22eabb4 --- /dev/null +++ b/Libs/zdxt-common-sms-5.6.0.pom @@ -0,0 +1,24 @@ + + + 4.0.0 + + org.dromara + zdxt-common + 5.6.0 + + org.dromara + zdxt-common-sms + 5.6.0 + zdxt-common-sms 短信模块 + + + org.dromara.sms4j + sms4j-spring-boot-starter + + + org.dromara + zdxt-common-redis + + + diff --git a/Libs/zdxt-common-social-5.6.0.pom b/Libs/zdxt-common-social-5.6.0.pom new file mode 100644 index 0000000..20e2ebe --- /dev/null +++ b/Libs/zdxt-common-social-5.6.0.pom @@ -0,0 +1,28 @@ + + + 4.0.0 + + org.dromara + zdxt-common + 5.6.0 + + org.dromara + zdxt-common-social + 5.6.0 + zdxt-common-social 授权认证 + + + me.zhyd.oauth + JustAuth + + + org.dromara + zdxt-common-json + + + org.dromara + zdxt-common-redis + + + diff --git a/Libs/zdxt-common-sse-5.6.0.pom b/Libs/zdxt-common-sse-5.6.0.pom new file mode 100644 index 0000000..d2ccb8e --- /dev/null +++ b/Libs/zdxt-common-sse-5.6.0.pom @@ -0,0 +1,32 @@ + + + 4.0.0 + + org.dromara + zdxt-common + 5.6.0 + + org.dromara + zdxt-common-sse + 5.6.0 + zdxt-common-sse 模块 + + + org.dromara + zdxt-common-core + + + org.dromara + zdxt-common-redis + + + org.dromara + zdxt-common-satoken + + + org.dromara + zdxt-common-json + + + diff --git a/Libs/zdxt-common-tenant-5.6.0.pom b/Libs/zdxt-common-tenant-5.6.0.pom new file mode 100644 index 0000000..a8ab8cf --- /dev/null +++ b/Libs/zdxt-common-tenant-5.6.0.pom @@ -0,0 +1,25 @@ + + + 4.0.0 + + org.dromara + zdxt-common + 5.6.0 + + org.dromara + zdxt-common-tenant + 5.6.0 + zdxt-common-tenant 租户模块 + + + org.dromara + zdxt-common-mybatis + true + + + org.dromara + zdxt-common-redis + + + diff --git a/Libs/zdxt-common-translation-5.6.0.pom b/Libs/zdxt-common-translation-5.6.0.pom new file mode 100644 index 0000000..28bc8e7 --- /dev/null +++ b/Libs/zdxt-common-translation-5.6.0.pom @@ -0,0 +1,20 @@ + + + 4.0.0 + + org.dromara + zdxt-common + 5.6.0 + + org.dromara + zdxt-common-translation + 5.6.0 + zdxt-common-translation 通用翻译功能 + + + org.dromara + zdxt-common-json + + + diff --git a/Libs/zdxt-common-web-5.6.0.pom b/Libs/zdxt-common-web-5.6.0.pom new file mode 100644 index 0000000..6a45e48 --- /dev/null +++ b/Libs/zdxt-common-web-5.6.0.pom @@ -0,0 +1,46 @@ + + + 4.0.0 + + org.dromara + zdxt-common + 5.6.0 + + org.dromara + zdxt-common-web + 5.6.0 + zdxt-common-web web服务 + + + org.dromara + zdxt-common-json + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-tomcat + + + + + org.springframework.boot + spring-boot-starter-undertow + + + org.springframework.boot + spring-boot-starter-actuator + + + cn.hutool + hutool-captcha + + + cn.hutool + hutool-crypto + + + diff --git a/Libs/zdxt-common-websocket-5.6.0.pom b/Libs/zdxt-common-websocket-5.6.0.pom new file mode 100644 index 0000000..ec42760 --- /dev/null +++ b/Libs/zdxt-common-websocket-5.6.0.pom @@ -0,0 +1,42 @@ + + + 4.0.0 + + org.dromara + zdxt-common + 5.6.0 + + org.dromara + zdxt-common-websocket + 5.6.0 + zdxt-common-websocket 模块 + + + org.dromara + zdxt-common-core + + + org.dromara + zdxt-common-redis + + + org.dromara + zdxt-common-satoken + + + org.dromara + zdxt-common-json + + + org.springframework.boot + spring-boot-starter-websocket + + + org.springframework.boot + spring-boot-starter-tomcat + + + + + diff --git a/Libs/zdxt-enforcement-code-common-5.6.0.pom b/Libs/zdxt-enforcement-code-common-5.6.0.pom new file mode 100644 index 0000000..49eac4d --- /dev/null +++ b/Libs/zdxt-enforcement-code-common-5.6.0.pom @@ -0,0 +1,125 @@ + + + 4.0.0 + + org.dromara + zdxt-modules + 5.6.0 + + org.dromara + zdxt-enforcement-code-common + 5.6.0 + + 17 + 17 + UTF-8 + + + + org.dromara + zdxt-common-core + + + org.dromara + zdxt-common-doc + + + org.dromara + zdxt-common-mybatis + + + org.dromara + zdxt-common-translation + + + org.dromara + zdxt-common-oss + + + org.dromara + zdxt-common-log + + + org.dromara + zdxt-common-excel + + + org.dromara + zdxt-common-sms + + + org.dromara + zdxt-common-tenant + + + org.dromara + zdxt-common-security + + + org.dromara + zdxt-common-web + + + org.dromara + zdxt-common-idempotent + + + org.dromara + zdxt-common-sensitive + + + org.dromara + zdxt-common-encrypt + + + org.dromara + zdxt-common-websocket + + + org.dromara + zdxt-common-sse + + + com.alibaba + fastjson + + + org.dromara + zdxt-common-quartz + + + org.dromara + zdxt-system + + + net.sourceforge.htmlunit + htmlunit + + + com.google.zxing + core + + + com.google.zxing + javase + + + org.apache.tomcat.embed + tomcat-embed-core + + + org.springframework + spring-web + 5.3.30 + + + org.springframework + spring-test + + + org.springframework + spring-test + + + diff --git a/Libs/zdxt-system-5.6.0.pom b/Libs/zdxt-system-5.6.0.pom new file mode 100644 index 0000000..6d0b6f9 --- /dev/null +++ b/Libs/zdxt-system-5.6.0.pom @@ -0,0 +1,84 @@ + + + 4.0.0 + + org.dromara + zdxt-modules + 5.6.0 + + org.dromara + zdxt-system + 5.6.0 + system系统模块 + + + org.dromara + zdxt-common-core + + + org.dromara + zdxt-common-doc + + + org.dromara + zdxt-common-mybatis + + + org.dromara + zdxt-common-translation + + + org.dromara + zdxt-common-oss + + + org.dromara + zdxt-common-log + + + org.dromara + zdxt-common-excel + + + org.dromara + zdxt-common-sms + + + org.dromara + zdxt-common-tenant + + + org.dromara + zdxt-common-security + + + org.dromara + zdxt-common-web + + + org.dromara + zdxt-common-idempotent + + + org.dromara + zdxt-common-sensitive + + + org.dromara + zdxt-common-encrypt + + + org.dromara + zdxt-common-websocket + + + org.dromara + zdxt-common-sse + + + org.dromara + zdxt-common-quartz + + + diff --git a/zdxt-modules/zdxt-enforcement-nos/pom.xml b/zdxt-modules/zdxt-enforcement-nos/pom.xml index 8d25c7f..345d887 100644 --- a/zdxt-modules/zdxt-enforcement-nos/pom.xml +++ b/zdxt-modules/zdxt-enforcement-nos/pom.xml @@ -22,12 +22,12 @@ + org.dromara zdxt-enforcement-code-common - org.dromara zdxt-common-core