2020-09-13 18:23:23 +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-boot-parent</artifactId>
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
2022-07-20 18:09:53 +08:00
|
|
|
<version>3.3.0</version>
|
2020-09-13 18:23:23 +08:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>jeecg-boot-module-demo</artifactId>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
2020-11-28 17:20:10 +08:00
|
|
|
<artifactId>jeecg-boot-base-core</artifactId>
|
2020-09-13 18:23:23 +08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2022-03-30 13:45:43 +08:00
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>SpringCloud</id>
|
2022-07-21 11:26:50 +08:00
|
|
|
<!-- 引入springboot独立启动-->
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<!-- 引入微服务Starter依赖 -->
|
2022-03-30 13:45:43 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
|
|
<artifactId>jeecg-boot-starter-cloud</artifactId>
|
|
|
|
</dependency>
|
2022-04-18 09:37:28 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
|
|
<artifactId>jeecg-boot-starter-job</artifactId>
|
|
|
|
</dependency>
|
2022-03-30 13:45:43 +08:00
|
|
|
</dependencies>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2020-09-13 18:23:23 +08:00
|
|
|
</project>
|