Browse Source

初始化工程

dev-msy
庄锐波 4 months ago
parent
commit
ba00ccd06a
  1. 29
      Libs/install-to-maven.ps1
  2. 73
      Libs/zdxt-common-core-5.6.0.pom
  3. 36
      Libs/zdxt-common-doc-5.6.0.pom
  4. 51
      Libs/zdxt-common-encrypt-5.6.0.pom
  5. 24
      Libs/zdxt-common-excel-5.6.0.pom
  6. 32
      Libs/zdxt-common-idempotent-5.6.0.pom
  7. 28
      Libs/zdxt-common-json-5.6.0.pom
  8. 24
      Libs/zdxt-common-log-5.6.0.pom
  9. 28
      Libs/zdxt-common-mail-5.6.0.pom
  10. 40
      Libs/zdxt-common-mybatis-5.6.0.pom
  11. 50
      Libs/zdxt-common-oss-5.6.0.pom
  12. 28
      Libs/zdxt-common-quartz-5.6.0.pom
  13. 24
      Libs/zdxt-common-ratelimiter-5.6.0.pom
  14. 41
      Libs/zdxt-common-redis-5.6.0.pom
  15. 35
      Libs/zdxt-common-satoken-5.6.0.pom
  16. 20
      Libs/zdxt-common-security-5.6.0.pom
  17. 20
      Libs/zdxt-common-sensitive-5.6.0.pom
  18. 24
      Libs/zdxt-common-sms-5.6.0.pom
  19. 28
      Libs/zdxt-common-social-5.6.0.pom
  20. 32
      Libs/zdxt-common-sse-5.6.0.pom
  21. 25
      Libs/zdxt-common-tenant-5.6.0.pom
  22. 20
      Libs/zdxt-common-translation-5.6.0.pom
  23. 46
      Libs/zdxt-common-web-5.6.0.pom
  24. 42
      Libs/zdxt-common-websocket-5.6.0.pom
  25. 125
      Libs/zdxt-enforcement-code-common-5.6.0.pom
  26. 84
      Libs/zdxt-system-5.6.0.pom
  27. 2
      zdxt-modules/zdxt-enforcement-nos/pom.xml

29
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

73
Libs/zdxt-common-core-5.6.0.pom

@ -0,0 +1,73 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-core</artifactId>
<version>5.6.0</version>
<description>zdxt-common-core 核心模块</description>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-core</artifactId>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-http</artifactId>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-extra</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-properties-migrator</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.github.linpeilie</groupId>
<artifactId>mapstruct-plus-spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.lionsoul</groupId>
<artifactId>ip2region</artifactId>
</dependency>
</dependencies>
</project>

36
Libs/zdxt-common-doc-5.6.0.pom

@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-doc</artifactId>
<version>5.6.0</version>
<description>zdxt-common-doc 系统接口</description>
<dependencies>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-core</artifactId>
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-api</artifactId>
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
</dependency>
<dependency>
<groupId>com.github.therapi</groupId>
<artifactId>therapi-runtime-javadoc</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-kotlin</artifactId>
</dependency>
</dependencies>
</project>

51
Libs/zdxt-common-encrypt-5.6.0.pom

@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-encrypt</artifactId>
<version>5.6.0</version>
<description>zdxt-common-encrypt 数据加解密模块</description>
<dependencies>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-core</artifactId>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
</dependency>
<dependency>
<groupId>org.jasypt</groupId>
<artifactId>jasypt</artifactId>
</dependency>
<dependency>
<groupId>com.github.ulisesbocchio</groupId>
<artifactId>jasypt-spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-crypto</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
<exclusions>
<exclusion>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
</exclusion>
</exclusions>
<optional>true</optional>
</dependency>
</dependencies>
</project>

24
Libs/zdxt-common-excel-5.6.0.pom

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-excel</artifactId>
<version>5.6.0</version>
<description>zdxt-common-excel</description>
<dependencies>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-json</artifactId>
</dependency>
<dependency>
<groupId>cn.idev.excel</groupId>
<artifactId>fastexcel</artifactId>
</dependency>
</dependencies>
</project>

32
Libs/zdxt-common-idempotent-5.6.0.pom

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-idempotent</artifactId>
<version>5.6.0</version>
<description>zdxt-common-idempotent 幂等功能</description>
<dependencies>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-json</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-redis</artifactId>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-crypto</artifactId>
</dependency>
<dependency>
<groupId>cn.dev33</groupId>
<artifactId>sa-token-core</artifactId>
</dependency>
</dependencies>
</project>

28
Libs/zdxt-common-json-5.6.0.pom

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-json</artifactId>
<version>5.6.0</version>
<description>zdxt-common-json 序列化模块</description>
<dependencies>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-core</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
</dependency>
</dependencies>
</project>

24
Libs/zdxt-common-log-5.6.0.pom

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-log</artifactId>
<version>5.6.0</version>
<description>zdxt-common-log 日志记录</description>
<dependencies>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-satoken</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-json</artifactId>
</dependency>
</dependencies>
</project>

28
Libs/zdxt-common-mail-5.6.0.pom

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-mail</artifactId>
<version>5.6.0</version>
<description>zdxt-common-mail 邮件模块</description>
<dependencies>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-core</artifactId>
</dependency>
<dependency>
<groupId>jakarta.mail</groupId>
<artifactId>jakarta.mail-api</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.angus</groupId>
<artifactId>jakarta.mail</artifactId>
</dependency>
</dependencies>
</project>

40
Libs/zdxt-common-mybatis-5.6.0.pom

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-mybatis</artifactId>
<version>5.6.0</version>
<description>zdxt-common-mybatis 数据库服务</description>
<dependencies>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-core</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-satoken</artifactId>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>dynamic-datasource-spring-boot3-starter</artifactId>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-jsqlparser</artifactId>
</dependency>
<dependency>
<groupId>p6spy</groupId>
<artifactId>p6spy</artifactId>
</dependency>
</dependencies>
</project>

50
Libs/zdxt-common-oss-5.6.0.pom

@ -0,0 +1,50 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-oss</artifactId>
<version>5.6.0</version>
<description>zdxt-common-oss oss服务</description>
<dependencies>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-json</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-redis</artifactId>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>s3</artifactId>
<exclusions>
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>aws-crt-client</artifactId>
</exclusion>
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>apache-client</artifactId>
</exclusion>
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>url-connection-client</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>netty-nio-client</artifactId>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>s3-transfer-manager</artifactId>
</dependency>
</dependencies>
</project>

28
Libs/zdxt-common-quartz-5.6.0.pom

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-quartz</artifactId>
<version>5.6.0</version>
<description>zdxt-common-quartz Quartz定时任务</description>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-quartz</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-core</artifactId>
</dependency>
</dependencies>
</project>

24
Libs/zdxt-common-ratelimiter-5.6.0.pom

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-ratelimiter</artifactId>
<version>5.6.0</version>
<description>zdxt-common-ratelimiter 限流功能</description>
<dependencies>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-core</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-redis</artifactId>
</dependency>
</dependencies>
</project>

41
Libs/zdxt-common-redis-5.6.0.pom

@ -0,0 +1,41 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-redis</artifactId>
<version>5.6.0</version>
<description>zdxt-common-redis 缓存服务</description>
<dependencies>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-core</artifactId>
</dependency>
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson-spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>lock4j-redisson-spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
</dependency>
<dependency>
<groupId>org.apache.fory</groupId>
<artifactId>fory-core</artifactId>
<version>0.13.1</version>
</dependency>
</dependencies>
</project>

35
Libs/zdxt-common-satoken-5.6.0.pom

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-satoken</artifactId>
<version>5.6.0</version>
<dependencies>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-core</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-redis</artifactId>
</dependency>
<dependency>
<groupId>cn.dev33</groupId>
<artifactId>sa-token-spring-boot3-starter</artifactId>
</dependency>
<dependency>
<groupId>cn.dev33</groupId>
<artifactId>sa-token-jwt</artifactId>
</dependency>
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
</dependency>
</dependencies>
</project>

20
Libs/zdxt-common-security-5.6.0.pom

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-security</artifactId>
<version>5.6.0</version>
<description>zdxt-common-security 安全模块</description>
<dependencies>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-satoken</artifactId>
</dependency>
</dependencies>
</project>

20
Libs/zdxt-common-sensitive-5.6.0.pom

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-sensitive</artifactId>
<version>5.6.0</version>
<description>zdxt-common-sensitive 脱敏模块</description>
<dependencies>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-json</artifactId>
</dependency>
</dependencies>
</project>

24
Libs/zdxt-common-sms-5.6.0.pom

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-sms</artifactId>
<version>5.6.0</version>
<description>zdxt-common-sms 短信模块</description>
<dependencies>
<dependency>
<groupId>org.dromara.sms4j</groupId>
<artifactId>sms4j-spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-redis</artifactId>
</dependency>
</dependencies>
</project>

28
Libs/zdxt-common-social-5.6.0.pom

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-social</artifactId>
<version>5.6.0</version>
<description>zdxt-common-social 授权认证</description>
<dependencies>
<dependency>
<groupId>me.zhyd.oauth</groupId>
<artifactId>JustAuth</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-json</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-redis</artifactId>
</dependency>
</dependencies>
</project>

32
Libs/zdxt-common-sse-5.6.0.pom

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-sse</artifactId>
<version>5.6.0</version>
<description>zdxt-common-sse 模块</description>
<dependencies>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-core</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-redis</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-satoken</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-json</artifactId>
</dependency>
</dependencies>
</project>

25
Libs/zdxt-common-tenant-5.6.0.pom

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-tenant</artifactId>
<version>5.6.0</version>
<description>zdxt-common-tenant 租户模块</description>
<dependencies>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-mybatis</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-redis</artifactId>
</dependency>
</dependencies>
</project>

20
Libs/zdxt-common-translation-5.6.0.pom

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-translation</artifactId>
<version>5.6.0</version>
<description>zdxt-common-translation 通用翻译功能</description>
<dependencies>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-json</artifactId>
</dependency>
</dependencies>
</project>

46
Libs/zdxt-common-web-5.6.0.pom

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-web</artifactId>
<version>5.6.0</version>
<description>zdxt-common-web web服务</description>
<dependencies>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-json</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-undertow</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-captcha</artifactId>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-crypto</artifactId>
</dependency>
</dependencies>
</project>

42
Libs/zdxt-common-websocket-5.6.0.pom

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-websocket</artifactId>
<version>5.6.0</version>
<description>zdxt-common-websocket 模块</description>
<dependencies>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-core</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-redis</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-satoken</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-json</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-websocket</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>

125
Libs/zdxt-enforcement-code-common-5.6.0.pom

@ -0,0 +1,125 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-modules</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-enforcement-code-common</artifactId>
<version>5.6.0</version>
<properties>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-core</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-doc</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-mybatis</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-translation</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-oss</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-log</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-excel</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-sms</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-tenant</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-security</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-web</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-idempotent</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-sensitive</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-encrypt</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-websocket</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-sse</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-quartz</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-system</artifactId>
</dependency>
<dependency>
<groupId>net.sourceforge.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
</dependency>
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>core</artifactId>
</dependency>
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>javase</artifactId>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>5.3.30</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
</dependency>
</dependencies>
</project>

84
Libs/zdxt-system-5.6.0.pom

@ -0,0 +1,84 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-modules</artifactId>
<version>5.6.0</version>
</parent>
<groupId>org.dromara</groupId>
<artifactId>zdxt-system</artifactId>
<version>5.6.0</version>
<description>system系统模块</description>
<dependencies>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-core</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-doc</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-mybatis</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-translation</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-oss</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-log</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-excel</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-sms</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-tenant</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-security</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-web</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-idempotent</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-sensitive</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-encrypt</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-websocket</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-sse</artifactId>
</dependency>
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-quartz</artifactId>
</dependency>
</dependencies>
</project>

2
zdxt-modules/zdxt-enforcement-nos/pom.xml

@ -22,12 +22,12 @@
</properties>
<dependencies>
<!-- 通用工具 -->
<!-- 通用工具 -->
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-enforcement-code-common</artifactId>
</dependency>
<!-- 通用工具 -->
<dependency>
<groupId>org.dromara</groupId>
<artifactId>zdxt-common-core</artifactId>

Loading…
Cancel
Save