mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2025-12-30 00:32:26 +08:00
Squashed commit of the following: commitf30a8c658aAuthor: JEECG <445654970@qq.com> Date: Thu Jul 31 11:35:16 2025 +0800 数据库缺少openapi微服务网关配置 commite84d7726d2Author: JEECG <445654970@qq.com> Date: Thu Jul 31 10:20:09 2025 +0800 后台接口地址修改 commit0f39802698Author: JEECG <445654970@qq.com> Date: Thu Jul 31 09:56:24 2025 +0800 docker自动化部署命令 commita014a3ed0eAuthor: JEECG <445654970@qq.com> Date: Wed Jul 30 21:55:16 2025 +0800 v3.8.2 优化一键docker启动前后端 commit5720d1a01eAuthor: JEECG <445654970@qq.com> Date: Wed Jul 30 19:26:38 2025 +0800 升级版本号到3.8.2 commit5eed6ac6d2Author: JEECG <445654970@qq.com> Date: Wed Jul 30 18:49:29 2025 +0800 升级版本号到3.8.2 commit0cfa1e223aAuthor: JEECG <445654970@qq.com> Date: Wed Jul 30 18:28:10 2025 +0800 v3.8.2 系统通知改造支持分类 commit219869f4c0Author: JEECG <445654970@qq.com> Date: Wed Jul 30 18:25:58 2025 +0800 v3.8.2 版本前端代码 commite6edde963aAuthor: JEECG <445654970@qq.com> Date: Wed Jul 30 18:25:46 2025 +0800 v3.8.2 版本后端代码 commitc44b66128eAuthor: JEECG <445654970@qq.com> Date: Wed Jul 30 18:23:09 2025 +0800 XXL-JOB(2.4.0 及以上)已被移除,分片参数获取方式变更。 commit9356b04741Author: JEECG <445654970@qq.com> Date: Wed Jul 30 10:57:52 2025 +0800 升级online到3.8.2-beta commitd0a094f9a3Author: JEECG <445654970@qq.com> Date: Wed Jul 30 10:57:31 2025 +0800 升级mybatis-plus到3.5.12、升级jsqlparser到4.9 commit73eb625737Author: JEECG <445654970@qq.com> Date: Wed Jul 30 09:51:34 2025 +0800 升级jimureport到v2.1.1 commit74880705b8Author: JEECG <445654970@qq.com> Date: Wed Jul 30 09:18:46 2025 +0800 升级online到3.8.2-beta # Conflicts: # jeecg-boot/jeecg-boot-base-core/pom.xml # jeecg-boot/jeecg-boot-base-core/src/main/java/org/jeecg/config/Swagger3Config.java # jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/java/org/jeecg/JeecgSystemApplication.java # jeecg-boot/jeecg-server-cloud/jeecg-visual/jeecg-cloud-sentinel/pom.xml # jeecg-boot/pom.xml
188 lines
6.9 KiB
XML
188 lines
6.9 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<parent>
|
||
<groupId>org.jeecgframework.boot</groupId>
|
||
<artifactId>jeecg-boot-module</artifactId>
|
||
<version>3.8.2</version>
|
||
</parent>
|
||
|
||
<artifactId>jeecg-boot-module-airag</artifactId>
|
||
|
||
<repositories>
|
||
<repository>
|
||
<id>aliyun</id>
|
||
<name>aliyun Repository</name>
|
||
<url>https://maven.aliyun.com/repository/public</url>
|
||
<snapshots>
|
||
<enabled>false</enabled>
|
||
</snapshots>
|
||
</repository>
|
||
<repository>
|
||
<id>jeecg</id>
|
||
<name>jeecg Repository</name>
|
||
<url>https://maven.jeecg.org/nexus/content/repositories/jeecg</url>
|
||
<snapshots>
|
||
<enabled>false</enabled>
|
||
</snapshots>
|
||
</repository>
|
||
</repositories>
|
||
|
||
<properties>
|
||
<kotlin.version>1.6.21</kotlin.version>
|
||
<liteflow.version>2.12.4.1</liteflow.version>
|
||
<langchain4j.version>0.35.0</langchain4j.version>
|
||
<apache-tika.version>2.9.1</apache-tika.version>
|
||
</properties>
|
||
|
||
<dependencies>
|
||
<!-- system单体 api-->
|
||
<dependency>
|
||
<groupId>org.jeecgframework.boot</groupId>
|
||
<artifactId>jeecg-system-local-api</artifactId>
|
||
</dependency>
|
||
<!-- 微服务starter和system微服务 api
|
||
<dependency>
|
||
<groupId>org.jeecgframework.boot</groupId>
|
||
<artifactId>jeecg-boot-starter-cloud</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.jeecgframework.boot</groupId>
|
||
<artifactId>jeecg-system-cloud-api</artifactId>
|
||
</dependency>-->
|
||
|
||
<!-- aiflow依赖 -->
|
||
<dependency>
|
||
<groupId>org.jeecgframework.boot3</groupId>
|
||
<artifactId>jeecg-aiflow</artifactId>
|
||
<version>1.1.1</version>
|
||
</dependency>
|
||
|
||
<!-- beigin 这两个依赖太多每个包50M左右,如果你发布需要使用,请把<scope>provided</scope>删掉 -->
|
||
<dependency>
|
||
<groupId>org.jetbrains.kotlin</groupId>
|
||
<artifactId>kotlin-scripting-jsr223</artifactId>
|
||
<version>${kotlin.version}</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.yomahub</groupId>
|
||
<artifactId>liteflow-script-graaljs</artifactId>
|
||
<version>${liteflow.version}</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
<!-- end 这两个依赖太多每个包50M左右,如果你发布需要使用,请把<scope>provided</scope>删掉 -->
|
||
|
||
<!-- aiflow 脚本依赖 -->
|
||
<dependency>
|
||
<groupId>com.yomahub</groupId>
|
||
<artifactId>liteflow-script-groovy</artifactId>
|
||
<version>${liteflow.version}</version>
|
||
<scope>runtime</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.yomahub</groupId>
|
||
<artifactId>liteflow-script-kotlin</artifactId>
|
||
<version>${liteflow.version}</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>org.jetbrains.kotlin</groupId>
|
||
<artifactId>kotlin-scripting-jsr223</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
<scope>runtime</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.yomahub</groupId>
|
||
<artifactId>liteflow-script-aviator</artifactId>
|
||
<version>${liteflow.version}</version>
|
||
<scope>runtime</scope>
|
||
<exclusions>
|
||
<exclusion>
|
||
<artifactId>aviator</artifactId>
|
||
<groupId>com.googlecode.aviator</groupId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
<!-- aiflow 脚本依赖 -->
|
||
|
||
<!-- langChain4j model support -->
|
||
<dependency>
|
||
<groupId>dev.langchain4j</groupId>
|
||
<artifactId>langchain4j-ollama</artifactId>
|
||
<version>${langchain4j.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>dev.langchain4j</groupId>
|
||
<artifactId>langchain4j-zhipu-ai</artifactId>
|
||
<version>${langchain4j.version}</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<artifactId>checker-qual</artifactId>
|
||
<groupId>org.checkerframework</groupId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<artifactId>guava</artifactId>
|
||
<groupId>com.google.guava</groupId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>dev.langchain4j</groupId>
|
||
<artifactId>langchain4j-qianfan</artifactId>
|
||
<version>${langchain4j.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>dev.langchain4j</groupId>
|
||
<artifactId>langchain4j-dashscope</artifactId>
|
||
<version>${langchain4j.version}</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>org.slf4j</groupId>
|
||
<artifactId>slf4j-simple</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<artifactId>okio</artifactId>
|
||
<groupId>com.squareup.okio</groupId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
<!-- langChain4j vextor support -->
|
||
<dependency>
|
||
<groupId>dev.langchain4j</groupId>
|
||
<artifactId>langchain4j-pgvector</artifactId>
|
||
<version>${langchain4j.version}</version>
|
||
</dependency>
|
||
<!-- langChain4j Document Parser -->
|
||
<dependency>
|
||
<groupId>org.apache.tika</groupId>
|
||
<artifactId>tika-core</artifactId>
|
||
<version>${apache-tika.version}</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<artifactId>commons-io</artifactId>
|
||
<groupId>commons-io</groupId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.tika</groupId>
|
||
<artifactId>tika-parser-html-module</artifactId>
|
||
<version>${apache-tika.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.tika</groupId>
|
||
<artifactId>tika-parser-pdf-module</artifactId>
|
||
<version>${apache-tika.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.tika</groupId>
|
||
<artifactId>tika-parser-text-module</artifactId>
|
||
<version>${apache-tika.version}</version>
|
||
</dependency>
|
||
|
||
</dependencies>
|
||
|
||
</project> |