<?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-module-dry</artifactId>
|
<groupId>org.jeecgframework.boot</groupId>
|
<version>3.5.0</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>jeecg-module-dry-start</artifactId>
|
<dependencies>
|
<!--微服务启动 starter-->
|
<dependency>
|
<groupId>org.jeecgframework.boot</groupId>
|
<artifactId>jeecg-boot-starter-cloud</artifactId>
|
</dependency>
|
<!--system cloud api-->
|
<dependency>
|
<groupId>org.jeecgframework.boot</groupId>
|
<artifactId>jeecg-system-cloud-api</artifactId>
|
</dependency>
|
|
<!--引入业务模块-->
|
<dependency>
|
<groupId>org.jeecgframework.boot</groupId>
|
<artifactId>jeecg-module-dry-biz</artifactId>
|
<version>3.5.0</version>
|
</dependency>
|
|
</dependencies>
|
<build>
|
<!-- 打包名称 -->
|
<finalName>${project.artifactId}</finalName>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<executions>
|
<execution>
|
<goals>
|
<goal>repackage</goal>
|
</goals>
|
</execution>
|
</executions>
|
</plugin>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-deploy-plugin</artifactId>
|
<configuration>
|
<skip>true</skip>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
|
</project>
|