Files
weiyu/modules/pom.xml

403 lines
15 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>
<module>core</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>
2024-03-29 16:26:33 +08:00
</modules>
<dependencies>
<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>
<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-data-rest</artifactId>
<scope>provided</scope>
</dependency>
<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
2024-03-29 16:26:33 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<scope>provided</scope>
</dependency>
<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>
2024-05-04 17:10:36 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
<scope>provided</scope>
</dependency>
2024-10-21 07:19:58 +08:00
2024-05-04 17:10:36 +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>
2024-06-18 15:28:57 +08:00
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
<scope>provided</scope>
</dependency>
2024-03-29 16:26:33 +08:00
<!-- 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>
2024-11-10 21:01:13 +08:00
<!-- for transforming LocalDateTime -->
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jsr310 -->
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>2.18.1</version>
<scope>provided</scope>
</dependency>
2024-03-29 16:26:33 +08:00
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 -->
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
2024-08-06 08:18:01 +08:00
<version>2.6.0</version>
2024-03-29 16:26:33 +08:00
</dependency>
<!-- FIXME: not working? https://docs.spring.io/spring-data/rest/reference/tools.html -->
<!-- <dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-rest-hal-explorer</artifactId>
<scope>provided</scope>
</dependency> -->
<!-- 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>
2024-09-11 19:06:46 +08:00
<!-- https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java -->
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
2024-10-07 07:29:38 +08:00
<!-- <version>3.25.2</version> -->
<version>4.28.2</version>
2024-09-11 19:06:46 +08:00
<scope>provided</scope>
</dependency>
2024-06-21 18:16:37 +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>
2024-08-06 08:18:01 +08:00
<version>4.0.1</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-05-21 09:02:02 +08:00
<!-- 汉字转拼音 -->
<!-- https://github.com/houbb/pinyin -->
<!-- https://mvnrepository.com/artifact/com.github.houbb/pinyin -->
<dependency>
<groupId>com.github.houbb</groupId>
<artifactId>pinyin</artifactId>
<version>0.3.1</version>
2024-10-21 07:19:58 +08:00
<!-- <version>0.4.5</version> -->
2024-06-12 16:32:58 +08:00
<scope>provided</scope>
2024-05-21 09:02:02 +08:00
</dependency>
2024-06-12 16:32:58 +08:00
<!-- apijson auto generate crud api -->
<!-- http://apijson.cn/doc/zh/ -->
<!-- https://jitpack.io/#Tencent/APIJSON/7.0.0 -->
2024-08-06 08:18:01 +08:00
<!-- <dependency>
2024-06-12 16:32:58 +08:00
<groupId>com.github.Tencent</groupId>
<artifactId>APIJSON</artifactId>
<version>7.0.0</version>
<scope>provided</scope>
2024-08-06 08:18:01 +08:00
</dependency> -->
2024-05-21 09:02:02 +08:00
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>
2024-10-07 07:29:38 +08:00
<version>5.2.0</version>
2024-08-06 08:18:01 +08:00
<scope>provided</scope>
</dependency>
2024-07-09 11:10:23 +08:00
2024-08-28 09:32:44 +08:00
<!-- redis search https://github.com/redis/lettucemod -->
2024-10-07 07:29:38 +08:00
<!-- https://mvnrepository.com/artifact/com.redis/lettucemod-spring -->
<!-- <dependency>
2024-08-28 09:32:44 +08:00
<groupId>com.redis</groupId>
<artifactId>lettucemod-spring</artifactId>
2024-10-07 07:29:38 +08:00
<version>4.1.0</version>
2024-08-28 09:32:44 +08:00
<scope>provided</scope>
2024-10-07 07:29:38 +08:00
</dependency> -->
2024-08-28 09:32:44 +08:00
<!-- https://redis.io/docs/latest/integrate/redisom-for-java/ -->
<!-- https://github.com/redis/redis-om-spring?tab=readme-ov-file -->
<!-- https://mvnrepository.com/artifact/com.redis.om/redis-om-spring -->
2024-10-07 07:29:38 +08:00
<dependency>
2024-08-28 09:32:44 +08:00
<groupId>com.redis.om</groupId>
<artifactId>redis-om-spring</artifactId>
2024-10-07 07:29:38 +08:00
<version>0.9.5</version>
2024-08-28 09:32:44 +08:00
<scope>provided</scope>
2024-10-07 07:29:38 +08:00
</dependency>
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>
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
2024-09-23 23:26:26 +08:00
</project>