2023-05-06 15:51:29 +08: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>
|
|
|
|
|
<artifactId>jeecg-server-cloud</artifactId>
|
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
|
|
|
<version>3.5.1</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2023-10-12 19:18:15 +08:00
|
|
|
|
<artifactId>armd-system-cloud-start</artifactId>
|
2023-05-06 15:51:29 +08:00
|
|
|
|
<description>System项目微服务启动</description>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<!-- 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>
|
2023-07-03 08:56:51 +08:00
|
|
|
|
<!-- feign 熔断限流、分布式锁、xxljob示例
|
2023-05-06 15:51:29 +08:00
|
|
|
|
<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>-->
|
|
|
|
|
<!-- 分布式事务例子
|
|
|
|
|
<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>
|
2023-10-12 15:58:37 +08:00
|
|
|
|
<!--<configuration>
|
2023-07-03 08:56:51 +08:00
|
|
|
|
<layout>ZIP</layout>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>
|
|
|
|
|
<groupId>nothing</groupId>
|
|
|
|
|
<artifactId>nothing</artifactId>
|
|
|
|
|
</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>repackage</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
2023-10-12 15:58:37 +08:00
|
|
|
|
</executions>-->
|
2023-05-06 15:51:29 +08:00
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2023-07-03 08:56:51 +08:00
|
|
|
|
</project>
|