Files
weiyu/modules/pom.xml

530 lines
20 KiB
XML
Raw Normal View History

2024-03-29 16:26:33 +08:00
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.bytedesk</groupId>
<artifactId>im</artifactId>
2024-09-23 23:26:26 +08:00
<version>${revision}</version>
2024-03-29 16:26:33 +08:00
</parent>
<artifactId>modules</artifactId>
<packaging>pom</packaging>
2024-07-09 12:38:12 +08:00
<version>${revision}</version>
2024-08-06 08:18:01 +08:00
2024-03-29 16:26:33 +08:00
<modules>
<module>ai</module>
2025-08-08 18:09:17 +08:00
<module>call</module>
2025-10-21 12:01:18 +08:00
<module>conference</module>
2024-03-29 16:26:33 +08:00
<module>core</module>
<module>forum</module>
2024-08-06 08:18:01 +08:00
<module>kbase</module>
2024-04-30 09:37:49 +08:00
<module>service</module>
2024-03-29 16:26:33 +08:00
<module>social</module>
<module>team</module>
2024-08-06 08:18:01 +08:00
<module>ticket</module>
<module>voc</module>
2024-03-29 16:26:33 +08:00
</modules>
2025-01-10 13:10:41 +08:00
<properties>
</properties>
2024-03-29 16:26:33 +08:00
<dependencies>
2025-02-22 13:01:56 +08:00
2024-03-29 16:26:33 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
2024-06-21 18:16:37 +08:00
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
2024-03-29 16:26:33 +08:00
<scope>provided</scope>
</dependency>
2025-02-06 23:09:15 +08:00
2024-11-18 13:17:15 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
<scope>provided</scope>
</dependency>
2025-06-07 10:41:55 +08:00
2024-03-29 16:26:33 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
2024-05-21 09:02:02 +08:00
<artifactId>spring-boot-starter-freemarker</artifactId>
2024-03-29 16:26:33 +08:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
2024-08-06 08:18:01 +08:00
<artifactId>spring-boot-starter-validation</artifactId>
2024-03-29 16:26:33 +08:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
2024-08-06 08:18:01 +08:00
<artifactId>spring-boot-starter-cache</artifactId>
2024-03-29 16:26:33 +08:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-artemis</artifactId>
<scope>provided</scope>
</dependency>
2024-03-29 16:26:33 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
2024-08-06 08:18:01 +08:00
<artifactId>spring-boot-starter-data-jpa</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
2024-03-29 16:26:33 +08:00
<scope>provided</scope>
</dependency>
2024-06-21 18:16:37 +08:00
2025-04-22 15:53:37 +08:00
<!-- 全文检索 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-elasticsearch</artifactId>
<scope>provided</scope>
</dependency>
2024-03-29 16:26:33 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<scope>provided</scope>
</dependency>
2025-03-04 14:40:04 +08:00
<dependency>
<groupId>org.springframework.retry</groupId>
<artifactId>spring-retry</artifactId>
<scope>provided</scope>
</dependency>
2024-03-29 16:26:33 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-quartz</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-batch</artifactId>
<scope>provided</scope>
</dependency>
2025-04-01 22:14:07 +08:00
<!-- Spring Boot Mail Starter -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
<scope>provided</scope>
</dependency>
<!-- Spring Integration Mail (用于轮询邮箱) -->
2025-04-01 22:31:19 +08:00
<!-- 主要用于构建邮件接收系统和邮件工作流 -->
<!-- https://docs.spring.io/spring-integration/reference/mail.html -->
2025-04-01 22:14:07 +08:00
<dependency>
<groupId>org.springframework.integration</groupId>
<artifactId>spring-integration-mail</artifactId>
2025-04-01 22:31:19 +08:00
<scope>provided</scope>
2025-04-01 22:14:07 +08:00
</dependency>
<!-- Jakarta Mail API -->
2025-04-01 22:31:19 +08:00
<!-- 提供了发送和接收邮件的标准 Java API只包含接口定义不包含实现 -->
<!-- <dependency>
2025-04-01 22:14:07 +08:00
<groupId>jakarta.mail</groupId>
<artifactId>jakarta.mail-api</artifactId>
2025-04-01 22:31:19 +08:00
</dependency> -->
2025-04-01 22:14:07 +08:00
<!-- Jakarta Mail 实现 -->
2025-04-01 22:31:19 +08:00
<!-- Eclipse Angus 是 Jakarta Mail 的参考实现,提供了实际的邮件操作功能实现 -->
<!-- <dependency>
2025-04-01 22:14:07 +08:00
<groupId>org.eclipse.angus</groupId>
<artifactId>angus-mail</artifactId>
2025-04-01 22:31:19 +08:00
</dependency> -->
2025-04-01 22:14:07 +08:00
2025-07-26 18:58:53 +08:00
2024-03-29 16:26:33 +08:00
<!--
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-configuration-processor -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<!-- querydsl crud增强-->
2024-04-30 09:37:49 +08:00
<!-- http://querydsl.com/ -->
<!-- https://github.com/querydsl/querydsl/tree/master/querydsl-jpa -->
2024-03-29 16:26:33 +08:00
<!-- https://mvnrepository.com/artifact/com.querydsl/querydsl-jpa -->
2024-04-30 09:37:49 +08:00
<!-- <dependency>
2024-03-29 16:26:33 +08:00
<groupId>com.querydsl</groupId>
<artifactId>querydsl-jpa</artifactId>
<classifier>jakarta</classifier>
<version>${querydsl.version}</version>
2024-04-30 09:37:49 +08:00
</dependency> -->
2024-03-29 16:26:33 +08:00
<!-- -->
<!-- https://mvnrepository.com/artifact/com.alibaba.fastjson2/fastjson2 -->
2024-04-30 09:37:49 +08:00
<!-- https://alibaba.github.io/fastjson2/ -->
<!-- https://github.com/alibaba/fastjson2/blob/main/docs/spring_support_cn.md -->
2024-03-29 16:26:33 +08:00
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId>
2024-10-07 07:29:38 +08:00
<version>2.0.53</version>
2024-04-30 09:37:49 +08:00
<scope>provided</scope>
2024-03-29 16:26:33 +08:00
</dependency>
2025-01-10 13:10:41 +08:00
<!-- for transforming ZonedDateTime -->
2025-01-10 13:10:41 +08:00
<!--
https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jsr310 -->
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>${jackson.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>
2025-01-09 23:20:28 +08:00
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
2025-01-10 13:10:41 +08:00
<dependency>
2025-01-09 23:20:28 +08:00
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
2025-01-10 13:10:41 +08:00
<version>${jackson.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson.version}</version>
</dependency>
2025-05-29 16:52:55 +08:00
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-hibernate5-jakarta -->
2025-05-29 14:43:31 +08:00
<!-- 用于处理Hibernate懒加载代理对象的序列化 -->
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
2025-05-29 16:52:55 +08:00
<artifactId>jackson-datatype-hibernate5-jakarta</artifactId>
2025-05-29 14:43:31 +08:00
<version>${jackson.version}</version>
</dependency>
2025-10-21 16:47:40 +08:00
<!-- xml 格式处理 -->
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-xml -->
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>
<version>${jackson.version}</version>
</dependency>
2025-01-09 23:20:28 +08:00
2025-04-17 14:01:02 +08:00
<!-- 跟Spring ai中swagger集成冲突去掉 -->
2024-06-21 18:16:37 +08:00
<!-- http://127.0.0.1:9003/swagger-ui/index.html -->
2024-03-29 16:26:33 +08:00
<!-- https://mvnrepository.com/artifact/org.springdoc/springdoc-openapi-starter-webmvc-ui -->
2025-04-03 15:18:45 +08:00
<!-- 添加provided会报错 -->
<!-- <scope>provided</scope> -->
2025-04-03 15:04:41 +08:00
<dependency>
<groupId>org.springdoc</groupId>
2024-03-29 16:26:33 +08:00
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
2025-04-03 15:18:45 +08:00
<version>${springdoc.version}</version>
2025-04-03 15:04:41 +08:00
</dependency>
<!-- https://mvnrepository.com/artifact/org.springdoc/springdoc-openapi-starter-webflux-ui -->
2025-04-03 15:18:45 +08:00
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webflux-ui</artifactId>
2025-04-03 15:18:45 +08:00
<version>${springdoc.version}</version>
</dependency>
2024-03-29 16:26:33 +08:00
<!-- https://mvnrepository.com/artifact/org.modelmapper/modelmapper -->
<dependency>
<groupId>org.modelmapper</groupId>
<artifactId>modelmapper</artifactId>
<version>3.2.0</version>
<scope>provided</scope>
</dependency>
<!-- 一级缓存 -->
<!-- https://mvnrepository.com/artifact/com.github.ben-manes.caffeine/caffeine -->
<!-- <version>3.1.8</version> -->
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
<scope>provided</scope>
</dependency>
2024-04-30 09:37:49 +08:00
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
<!-- https://wizardforcel.gitbooks.io/guava-tutorial/content/1.html -->
<!-- https://github.com/google/guava/wiki -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
2024-10-07 07:29:38 +08:00
<version>33.3.1-jre</version>
2024-04-30 09:37:49 +08:00
<scope>provided</scope>
</dependency>
2025-09-19 09:46:55 +08:00
<!--aliyun sms-->
2024-05-15 12:09:01 +08:00
<!-- https://mvnrepository.com/artifact/com.aliyun/aliyun-java-sdk-core -->
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-core</artifactId>
<!-- <version>4.6.4</version> -->
<version>4.5.13</version>
<scope>provided</scope>
</dependency>
2024-06-12 16:32:58 +08:00
<!-- aliyun ecs send email -->
2024-05-15 12:09:01 +08:00
<!-- https://mvnrepository.com/artifact/com.aliyun/aliyun-java-sdk-dm -->
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-dm</artifactId>
<!-- <version>3.3.2</version> -->
<version>3.3.1</version>
<scope>provided</scope>
</dependency>
2024-06-12 16:32:58 +08:00
<!-- export excel -->
<!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>easyexcel</artifactId>
2025-04-30 21:41:09 +08:00
<version>4.0.3</version>
2024-06-12 16:32:58 +08:00
<scope>provided</scope>
</dependency>
2024-04-30 09:37:49 +08:00
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
<!-- <dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.14.0</version>
<scope>provided</scope>
</dependency> -->
<!-- 生成随机用户:用户名、邮箱、地址等,方便测试 https://github.com/DiUS/java-faker?tab=readme-ov-file -->
<!-- https://mvnrepository.com/artifact/com.github.javafaker/javafaker -->
2024-05-04 17:10:36 +08:00
<!-- <dependency>
2024-04-30 09:37:49 +08:00
<groupId>com.github.javafaker</groupId>
<artifactId>javafaker</artifactId>
<version>1.0.2</version>
2024-05-04 17:10:36 +08:00
</dependency> -->
2024-04-30 09:37:49 +08:00
2024-05-15 12:09:01 +08:00
<!-- 定时任务 -->
<!-- https://mvnrepository.com/artifact/com.xuxueli/xxl-job-core -->
<!-- <dependency>
<groupId>com.xuxueli</groupId>
<artifactId>xxl-job-core</artifactId>
<version>2.4.1</version>
<scope>provided</scope>
</dependency> -->
2024-07-09 11:10:23 +08:00
<!-- 验证码 -->
<!-- https://mvnrepository.com/artifact/pro.fessional/kaptcha -->
<dependency>
<groupId>pro.fessional</groupId>
<artifactId>kaptcha</artifactId>
<version>2.3.3</version>
<scope>provided</scope>
</dependency>
2024-08-06 08:18:01 +08:00
<!-- https://www.cnblogs.com/cao-lei/p/17099729.html -->
2024-10-07 07:29:38 +08:00
<!-- https://mvnrepository.com/artifact/com.lmax/disruptor -->
2024-08-06 08:18:01 +08:00
<dependency>
<groupId>com.lmax</groupId>
<artifactId>disruptor</artifactId>
<version>4.0.0</version>
<scope>provided</scope>
</dependency>
2024-07-09 11:10:23 +08:00
2024-08-06 08:18:01 +08:00
<!-- https://github.com/redis/jedis?tab=readme-ov-file -->
<!-- https://mvnrepository.com/artifact/redis.clients/jedis -->
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
2025-08-08 11:35:00 +08:00
<version>${jedis.version}</version>
2024-08-06 08:18:01 +08:00
<scope>provided</scope>
</dependency>
2024-12-22 23:11:38 +08:00
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
2025-01-10 13:10:41 +08:00
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
2025-09-28 12:27:42 +08:00
<version>2.20.0</version>
2024-12-22 23:11:38 +08:00
<scope>provided</scope>
2025-01-10 13:10:41 +08:00
</dependency>
2024-07-09 11:10:23 +08:00
2024-08-28 09:32:44 +08:00
<!-- jedis pool config -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
<scope>provided</scope>
</dependency>
<!-- validate mobile phone number format -->
<!-- https://github.com/google/libphonenumber/ -->
<!-- https://www.baeldung.com/java-libphonenumber -->
<!-- https://mvnrepository.com/artifact/com.googlecode.libphonenumber -->
<!-- libphonenumber用于校验手机号的正确性提供了getNumberTypeisNumberMatch getExampleNumber 等方法。 -->
<dependency>
<groupId>com.googlecode.libphonenumber</groupId>
<artifactId>libphonenumber</artifactId>
<version>8.13.51</version>
<scope>provided</scope>
</dependency>
<!-- carrier用于获取手机号的供应商。通过初始化PhoneNumberToCarrierMapper 调用getNameForNumber可获取运营商信息。 -->
<!-- https://mvnrepository.com/artifact/com.googlecode.libphonenumber/carrier -->
<dependency>
<groupId>com.googlecode.libphonenumber</groupId>
<artifactId>carrier</artifactId>
<version>1.235</version>
<scope>provided</scope>
</dependency>
2025-01-10 13:10:41 +08:00
<!-- geocoder用于获取手机号的归属地。通过初始化PhoneNumberOfflineGeocoder
调用getDescriptionForNumber方法可获取手机归属地 -->
<!-- https://mvnrepository.com/artifact/com.googlecode.libphonenumber/geocoder -->
<dependency>
<groupId>com.googlecode.libphonenumber</groupId>
<artifactId>geocoder</artifactId>
<version>2.245</version>
<scope>provided</scope>
</dependency>
2025-09-19 09:46:55 +08:00
<!-- TODO: Rate Limiter -->
<!-- https://bucket4j.com/8.14.0/toc.html -->
<!-- https://github.com/bucket4j/bucket4j -->
<!-- https://mvnrepository.com/artifact/com.bucket4j/bucket4j_jdk17-core -->
<!-- <dependency>
<groupId>com.bucket4j</groupId>
<artifactId>bucket4j_jdk17-core</artifactId>
<version>8.14.0</version>
</dependency> -->
<!-- TODO: DDos Protection -->
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-collections4 -->
<!-- <dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>4.5.0-M3</version>
</dependency> -->
2024-03-29 16:26:33 +08:00
<!-- -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
2024-08-28 09:32:44 +08:00
<scope>provided</scope>
<optional>true</optional>
2024-03-29 16:26:33 +08:00
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework.security/spring-security-test -->
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
2024-04-30 09:37:49 +08:00
<!-- https://mvnrepository.com/artifact/com.querydsl/querydsl-apt -->
<!-- <plugin>
2024-03-29 16:26:33 +08:00
<groupId>com.mysema.maven</groupId>
<artifactId>apt-maven-plugin</artifactId>
<version>${apt.version}</version>
<dependencies>
<dependency>
<groupId>com.querydsl</groupId>
<artifactId>querydsl-apt</artifactId>
<classifier>jakarta</classifier>
<version>${querydsl.version}</version>
</dependency>
</dependencies>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>process</goal>
</goals>
<configuration>
<outputDirectory>target/generated-sources/queries</outputDirectory>
<processor>com.querydsl.apt.jpa.JPAAnnotationProcessor</processor>
</configuration>
</execution>
</executions>
2024-04-30 09:37:49 +08:00
</plugin> -->
2024-03-29 16:26:33 +08:00
</plugins>
</build>
2024-08-06 08:18:01 +08:00
<!-- APIJSON 必须用到的托管平台 -->
<!-- <repositories>
2024-06-12 16:32:58 +08:00
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
2024-08-06 08:18:01 +08:00
</repositories> -->
2024-06-12 16:32:58 +08:00
2025-10-15 10:04:04 +08:00
<repositories>
<!-- https://java2ai.com/docs/dev/get-started/ -->
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<!-- https://docs.spring.io/spring-ai/reference/getting-started.html -->
<!-- https://repo.spring.io/ui/native/snapshot/org/springframework/ai/ -->
<repository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/snapshot</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<!-- https://oss.sonatype.org/content/repositories/snapshots/com/alibaba/cloud/ai/spring-ai-alibaba-bom/1.0.0.3-SNAPSHOT/maven-metadata.xml -->
<repository>
<name>Central Portal Snapshots</name>
<id>central-portal-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
2024-09-23 23:26:26 +08:00
</project>