mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2026-01-07 09:08:11 +00:00
Squashed commit of the following:
commit f30a8c658a90020ec020fc702c680b2ee8562b70
Author: JEECG <445654970@qq.com>
Date: Thu Jul 31 11:35:16 2025 +0800
数据库缺少openapi微服务网关配置
commit e84d7726d2bbe60bacf759375c15aa74888a816c
Author: JEECG <445654970@qq.com>
Date: Thu Jul 31 10:20:09 2025 +0800
后台接口地址修改
commit 0f398026982aefe55a0113be688fa1339a8161ac
Author: JEECG <445654970@qq.com>
Date: Thu Jul 31 09:56:24 2025 +0800
docker自动化部署命令
commit a014a3ed0e81900e879bcce7bae7afcf68e15227
Author: JEECG <445654970@qq.com>
Date: Wed Jul 30 21:55:16 2025 +0800
v3.8.2 优化一键docker启动前后端
commit 5720d1a01ecdf003cbc7a29aedba4ca1bd88a96c
Author: JEECG <445654970@qq.com>
Date: Wed Jul 30 19:26:38 2025 +0800
升级版本号到3.8.2
commit 5eed6ac6d2145a50f6e0ea650fc3a3c2de1aee0a
Author: JEECG <445654970@qq.com>
Date: Wed Jul 30 18:49:29 2025 +0800
升级版本号到3.8.2
commit 0cfa1e223ae0907d0d25849484390dcfadd717c9
Author: JEECG <445654970@qq.com>
Date: Wed Jul 30 18:28:10 2025 +0800
v3.8.2 系统通知改造支持分类
commit 219869f4c01b848d31ab1a1d41f9613ae8762f5b
Author: JEECG <445654970@qq.com>
Date: Wed Jul 30 18:25:58 2025 +0800
v3.8.2 版本前端代码
commit e6edde963a4c65762d3ffd0b6f3257e138e54964
Author: JEECG <445654970@qq.com>
Date: Wed Jul 30 18:25:46 2025 +0800
v3.8.2 版本后端代码
commit c44b66128e5e89636be67a484875eef393824504
Author: JEECG <445654970@qq.com>
Date: Wed Jul 30 18:23:09 2025 +0800
XXL-JOB(2.4.0 及以上)已被移除,分片参数获取方式变更。
commit 9356b0474191a8ee038b9653c4051db25fb20922
Author: JEECG <445654970@qq.com>
Date: Wed Jul 30 10:57:52 2025 +0800
升级online到3.8.2-beta
commit d0a094f9a311e6d58b873681d483849ed848fa0b
Author: JEECG <445654970@qq.com>
Date: Wed Jul 30 10:57:31 2025 +0800
升级mybatis-plus到3.5.12、升级jsqlparser到4.9
commit 73eb62573798907d775f499994764469bbbc4f45
Author: JEECG <445654970@qq.com>
Date: Wed Jul 30 09:51:34 2025 +0800
升级jimureport到v2.1.1
commit 74880705b8f0baf0478277604f15ae61e1b1a842
Author: 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
81 lines
3.1 KiB
XML
81 lines
3.1 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">
|
||
<parent>
|
||
<artifactId>jeecg-server-cloud</artifactId>
|
||
<groupId>org.jeecgframework.boot</groupId>
|
||
<version>3.8.2</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<artifactId>jeecg-system-cloud-start</artifactId>
|
||
<description>System项目微服务启动</description>
|
||
|
||
<dependencies>
|
||
<!-- 引入jeecg-boot-starter-cloud依赖 -->
|
||
<dependency>
|
||
<groupId>org.jeecgframework.boot</groupId>
|
||
<artifactId>jeecg-boot-starter3-cloud</artifactId>
|
||
<!-- 3.2版本号后,可选择是否排除jeecg-system-cloud-api,不排除会优先通过fegin调用接口
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>org.jeecgframework.boot</groupId>
|
||
<artifactId>jeecg-system-cloud-api</artifactId>
|
||
</exclusion>
|
||
</exclusions>-->
|
||
</dependency>
|
||
<!-- jeecg-system-biz依赖 -->
|
||
<dependency>
|
||
<groupId>org.jeecgframework.boot</groupId>
|
||
<artifactId>jeecg-system-biz</artifactId>
|
||
<!-- 排除demo模块,demo模块采用微服务独立启动 -->
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>org.jeecgframework.boot</groupId>
|
||
<artifactId>jeecg-module-demo</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
|
||
<!-- feign 熔断限流、分布式锁、xxljob示例
|
||
<dependency>
|
||
<groupId>org.jeecgframework.boot</groupId>
|
||
<artifactId>jeecg-cloud-test-more</artifactId>
|
||
<version>${jeecgboot.version}</version>
|
||
</dependency>-->
|
||
<!-- rabbitmq例子
|
||
<dependency>
|
||
<groupId>org.jeecgframework.boot</groupId>
|
||
<artifactId>jeecg-cloud-test-rabbitmq</artifactId>
|
||
<version>${jeecgboot.version}</version>
|
||
</dependency>-->
|
||
<!-- rocketmq例子-->
|
||
<!--<dependency>
|
||
<groupId>org.jeecgframework.boot</groupId>
|
||
<artifactId>jeecg-cloud-test-rocketmq</artifactId>
|
||
<version>${jeecgboot.version}</version>
|
||
</dependency>-->
|
||
<!-- 分布式事务例子
|
||
<dependency>
|
||
<groupId>org.jeecgframework.boot</groupId>
|
||
<artifactId>jeecg-cloud-test-seata</artifactId>
|
||
<version>${jeecgboot.version}</version>
|
||
</dependency>-->
|
||
<!-- 分库分表例子
|
||
<dependency>
|
||
<groupId>org.jeecgframework.boot</groupId>
|
||
<artifactId>jeecg-cloud-test-shardingsphere</artifactId>
|
||
<version>${jeecgboot.version}</version>
|
||
</dependency>-->
|
||
|
||
</dependencies>
|
||
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
</project> |