2020-11-28 09:20:10 +00: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">
|
|
|
|
|
<parent>
|
2022-08-12 06:14:11 +00:00
|
|
|
|
<artifactId>jeecg-server-cloud</artifactId>
|
2020-11-28 09:20:10 +00:00
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
2023-10-18 07:04:41 +00:00
|
|
|
|
<version>3.6.0</version>
|
2020-11-28 09:20:10 +00:00
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-08-06 09:02:37 +00:00
|
|
|
|
<artifactId>jeecg-system-cloud-start</artifactId>
|
2022-09-22 07:46:19 +00:00
|
|
|
|
<description>System项目微服务启动</description>
|
2020-11-28 09:20:10 +00:00
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<!-- 引入jeecg-boot-starter-cloud依赖 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
|
|
|
<artifactId>jeecg-boot-starter-cloud</artifactId>
|
2022-04-18 01:37:28 +00:00
|
|
|
|
<!-- 3.2版本号后,可选择是否排除jeecg-system-cloud-api,不排除会优先通过fegin调用接口
|
2020-11-28 09:20:10 +00:00
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
|
|
|
<artifactId>jeecg-system-cloud-api</artifactId>
|
|
|
|
|
</exclusion>
|
2022-04-18 01:37:28 +00:00
|
|
|
|
</exclusions>-->
|
2020-11-28 09:20:10 +00:00
|
|
|
|
</dependency>
|
2022-08-12 06:14:11 +00:00
|
|
|
|
<!-- jeecg-system-biz依赖 -->
|
2021-02-21 06:36:44 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
2022-08-12 06:14:11 +00:00
|
|
|
|
<artifactId>jeecg-system-biz</artifactId>
|
2022-04-18 01:37:28 +00:00
|
|
|
|
<!-- 排除demo模块,demo模块采用微服务独立启动 -->
|
2022-03-30 05:45:43 +00:00
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
2022-08-12 06:14:11 +00:00
|
|
|
|
<artifactId>jeecg-module-demo</artifactId>
|
2022-03-30 05:45:43 +00:00
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2021-02-21 06:36:44 +00:00
|
|
|
|
</dependency>
|
|
|
|
|
|
2022-08-06 09:02:37 +00:00
|
|
|
|
<!-- feign 熔断限流、分布式锁、xxljob示例
|
2020-11-28 09:20:10 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
2022-02-26 09:43:55 +00:00
|
|
|
|
<artifactId>jeecg-cloud-test-more</artifactId>
|
2022-04-18 01:37:28 +00:00
|
|
|
|
<version>${jeecgboot.version}</version>
|
2022-08-06 09:02:37 +00:00
|
|
|
|
</dependency>-->
|
2022-04-18 01:37:28 +00:00
|
|
|
|
<!-- rabbitmq例子
|
2021-02-21 06:36:44 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
2022-04-18 01:37:28 +00:00
|
|
|
|
<artifactId>jeecg-cloud-test-rabbitmq</artifactId>
|
|
|
|
|
<version>${jeecgboot.version}</version>
|
2022-02-26 09:43:55 +00:00
|
|
|
|
</dependency>-->
|
2022-04-18 01:37:28 +00:00
|
|
|
|
<!-- 分布式事务例子
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
|
|
|
<artifactId>jeecg-cloud-test-seata</artifactId>
|
|
|
|
|
<version>${jeecgboot.version}</version>
|
|
|
|
|
</dependency>-->
|
2022-08-06 09:02:37 +00:00
|
|
|
|
<!-- 分库分表例子
|
2022-04-18 01:37:28 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
|
|
|
<artifactId>jeecg-cloud-test-shardingsphere</artifactId>
|
|
|
|
|
<version>${jeecgboot.version}</version>
|
2022-08-06 09:02:37 +00:00
|
|
|
|
</dependency>-->
|
2021-02-21 06:36:44 +00:00
|
|
|
|
|
2020-11-28 09:20:10 +00:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|