test-backend/test-server-cloud/test-system-cloud-start/pom.xml

112 lines
4.2 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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>test-server-cloud</artifactId>
<groupId>com.ghb</groupId>
<version>3.9.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>test-system-cloud-start</artifactId>
<description>System项目微服务启动</description>
<dependencies>
<!-- 引入jeecg-boot-starter-cloud依赖 -->
<dependency>
<groupId>org.jeecgframework.boot3</groupId>
<artifactId>jeecg-boot-starter-cloud</artifactId>
<!-- 3.2版本号后可选择是否排除jeecg-system-cloud-api不排除会优先通过fegin调用接口
<exclusions>
<exclusion>
<groupId>org.jeecgframework.boot3</groupId>
<artifactId>test-system-cloud-api</artifactId>
</exclusion>
</exclusions>-->
</dependency>
<!-- jeecg-system-biz依赖 -->
<dependency>
<groupId>com.ghb</groupId>
<artifactId>test-system-biz</artifactId>
<!-- 排除demo模块和online模块online Mapper XML 含不兼容表) -->
<exclusions>
<exclusion>
<groupId>com.ghb</groupId>
<artifactId>jeecg-module-demo</artifactId>
</exclusion>
<exclusion>
<groupId>org.jeecgframework.boot3</groupId>
<artifactId>jeecg-online</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- business 模块,随 system 微服务加载业务接口 -->
<dependency>
<groupId>com.ghb</groupId>
<artifactId>test-module-business</artifactId>
</dependency>
<dependency>
<groupId>org.jeecgframework.boot3</groupId>
<artifactId>jeecg-boot-starter-job</artifactId>
</dependency>
<!-- Knife4j API文档 -->
<dependency>
<groupId>com.github.xiaoymin</groupId>
<artifactId>knife4j-openapi3-ui</artifactId>
<version>${knife4j-spring-boot-starter.version}</version>
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>2.7.0</version>
</dependency>
<!-- feign 熔断限流、分布式锁、xxljob示例
<dependency>
<groupId>com.ghb</groupId>
<artifactId>test-cloud-test-more</artifactId>
<version>${jeecgboot.version}</version>
</dependency>-->
<!-- rabbitmq例子
<dependency>
<groupId>com.ghb</groupId>
<artifactId>test-cloud-test-rabbitmq</artifactId>
<version>${jeecgboot.version}</version>
</dependency>-->
<!-- rocketmq例子-->
<!--<dependency>
<groupId>com.ghb</groupId>
<artifactId>test-cloud-test-rocketmq</artifactId>
<version>${jeecgboot.version}</version>
</dependency>-->
<!-- 分布式事务例子
<dependency>
<groupId>com.ghb</groupId>
<artifactId>test-cloud-test-seata</artifactId>
<version>${jeecgboot.version}</version>
</dependency>-->
<!-- 分库分表例子
<dependency>
<groupId>com.ghb</groupId>
<artifactId>test-cloud-test-shardingsphere</artifactId>
<version>${jeecgboot.version}</version>
</dependency>
<dependency>
<groupId>org.jeecgframework.boot3</groupId>
<artifactId>jeecg-boot-starter-shardingsphere-nacos</artifactId>
</dependency>-->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>