mirror of
https://gitee.com/270580156/weiyu.git
synced 2026-05-15 11:47:54 +00:00
311 lines
11 KiB
XML
311 lines
11 KiB
XML
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<parent>
|
||
<groupId>com.bytedesk</groupId>
|
||
<artifactId>demos</artifactId>
|
||
<version>${revision}</version>
|
||
</parent>
|
||
|
||
<artifactId>bytedesk-demos</artifactId>
|
||
<version>${revision}</version>
|
||
|
||
<name>bytedesk-demos</name>
|
||
<description>https://ai.bytedesk.com</description>
|
||
|
||
<properties>
|
||
|
||
</properties>
|
||
|
||
<dependencies>
|
||
|
||
<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>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-jetty</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-freemarker</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-security</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<!-- https://docs.spring.io/spring-data/jpa/reference/jpa/query-methods.html -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-validation</artifactId>
|
||
<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>
|
||
<artifactId>spring-boot-starter-cache</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<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>
|
||
|
||
<!-- scheduled task - 定时任务-->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-quartz</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<!--
|
||
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>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<!-- querydsl crud增强-->
|
||
<!-- http://querydsl.com/ -->
|
||
<!-- https://github.com/querydsl/querydsl/tree/master/querydsl-jpa -->
|
||
<!-- https://mvnrepository.com/artifact/com.querydsl/querydsl-jpa -->
|
||
<!-- <dependency>
|
||
<groupId>com.querydsl</groupId>
|
||
<artifactId>querydsl-jpa</artifactId>
|
||
<classifier>jakarta</classifier>
|
||
<version>${querydsl.version}</version>
|
||
</dependency> -->
|
||
|
||
|
||
<!-- //////////////////////////////////微语模块/////////////////////////////////////////// -->
|
||
|
||
<dependency>
|
||
<groupId>com.bytedesk</groupId>
|
||
<artifactId>bytedesk-module-ai</artifactId>
|
||
<version>${revision}</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.bytedesk</groupId>
|
||
<artifactId>bytedesk-module-core</artifactId>
|
||
<version>${revision}</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.bytedesk</groupId>
|
||
<artifactId>bytedesk-module-kbase</artifactId>
|
||
<version>${revision}</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.bytedesk</groupId>
|
||
<artifactId>bytedesk-module-service</artifactId>
|
||
<version>${revision}</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.bytedesk</groupId>
|
||
<artifactId>bytedesk-module-team</artifactId>
|
||
<version>${revision}</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.bytedesk</groupId>
|
||
<artifactId>bytedesk-module-ticket</artifactId>
|
||
<version>${revision}</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<!-- //////////////////////////////////第三方模块/////////////////////////////////////////// -->
|
||
|
||
<!-- -->
|
||
<!-- https://mvnrepository.com/artifact/com.alibaba.fastjson2/fastjson2 -->
|
||
<!-- https://alibaba.github.io/fastjson2/ -->
|
||
<!-- https://github.com/alibaba/fastjson2/blob/main/docs/spring_support_cn.md -->
|
||
<dependency>
|
||
<groupId>com.alibaba.fastjson2</groupId>
|
||
<artifactId>fastjson2</artifactId>
|
||
<version>2.0.53</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<!-- export excel -->
|
||
<!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>easyexcel</artifactId>
|
||
<version>4.0.3</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
|
||
<!-- 跟Spring ai中swagger集成冲突,去掉 -->
|
||
<!-- http://127.0.0.1:9003/swagger-ui/index.html -->
|
||
<!-- https://mvnrepository.com/artifact/org.springdoc/springdoc-openapi-starter-webmvc-ui -->
|
||
<!-- 添加provided会报错 -->
|
||
<!-- <scope>provided</scope> -->
|
||
<dependency>
|
||
<groupId>org.springdoc</groupId>
|
||
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
||
<version>${springdoc.version}</version>
|
||
</dependency>
|
||
<!-- https://mvnrepository.com/artifact/org.springdoc/springdoc-openapi-starter-webflux-ui -->
|
||
<dependency>
|
||
<groupId>org.springdoc</groupId>
|
||
<artifactId>springdoc-openapi-starter-webflux-ui</artifactId>
|
||
<version>${springdoc.version}</version>
|
||
</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>
|
||
|
||
<!-- 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>
|
||
<version>33.3.1-jre</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<!--阿里云短信平台-->
|
||
<!-- 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>
|
||
<!-- 邮件 -->
|
||
<!-- 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>
|
||
|
||
|
||
<!-- apijson auto generate crud api -->
|
||
<!-- http://apijson.cn/doc/zh/ -->
|
||
<!-- https://jitpack.io/#Tencent/APIJSON/7.0.0 -->
|
||
<!-- <dependency>
|
||
<groupId>com.github.Tencent</groupId>
|
||
<artifactId>APIJSON</artifactId>
|
||
<version>7.0.0</version>
|
||
<scope>provided</scope>
|
||
</dependency> -->
|
||
|
||
<!-- 内存队列 https://search.maven.org/artifact/com.lmax/disruptor/4.0.0/jar -->
|
||
<dependency>
|
||
<groupId>com.lmax</groupId>
|
||
<artifactId>disruptor</artifactId>
|
||
<version>4.0.0</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<!-- 暂停自动hot reload -->
|
||
<!-- <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>
|
||
</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>
|
||
</plugins>
|
||
</build>
|
||
|
||
|
||
</project> |