109 lines
3.4 KiB
XML
109 lines
3.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
xmlns="http://maven.apache.org/POM/4.0.0"
|
||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
<parent>
|
||
<groupId>com.muyu</groupId>
|
||
<artifactId>muyu-modules</artifactId>
|
||
<version>3.6.3</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<artifactId>muyu-modules-system</artifactId>
|
||
|
||
<description>
|
||
muyu-modules-system系统模块
|
||
</description>
|
||
|
||
<dependencies>
|
||
|
||
<!-- SpringCloud Alibaba Nacos -->
|
||
<dependency>
|
||
<groupId>com.alibaba.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
||
</dependency>
|
||
|
||
<!-- SpringCloud Alibaba Nacos Config -->
|
||
<dependency>
|
||
<groupId>com.alibaba.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
||
</dependency>
|
||
|
||
<!-- SpringCloud Alibaba Sentinel -->
|
||
<dependency>
|
||
<groupId>com.alibaba.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
||
</dependency>
|
||
|
||
<!-- SpringBoot Actuator -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-actuator</artifactId>
|
||
</dependency>
|
||
|
||
<!-- Swagger UI -->
|
||
<dependency>
|
||
<groupId>io.springfox</groupId>
|
||
<artifactId>springfox-swagger-ui</artifactId>
|
||
<version>${swagger.fox.version}</version>
|
||
</dependency>
|
||
|
||
<!-- Mysql Connector -->
|
||
<dependency>
|
||
<groupId>com.mysql</groupId>
|
||
<artifactId>mysql-connector-j</artifactId>
|
||
</dependency>
|
||
|
||
<!-- MuYu Common DataSource -->
|
||
<dependency>
|
||
<groupId>com.muyu</groupId>
|
||
<artifactId>muyu-common-datasource</artifactId>
|
||
</dependency>
|
||
|
||
<!-- MuYu Common DataScope -->
|
||
<dependency>
|
||
<groupId>com.muyu</groupId>
|
||
<artifactId>muyu-common-datascope</artifactId>
|
||
</dependency>
|
||
|
||
<!-- MuYu Common Log -->
|
||
<dependency>
|
||
<groupId>com.muyu</groupId>
|
||
<artifactId>muyu-common-log</artifactId>
|
||
</dependency>
|
||
|
||
<!-- MuYu Common Swagger -->
|
||
<dependency>
|
||
<groupId>com.muyu</groupId>
|
||
<artifactId>muyu-common-swagger</artifactId>
|
||
</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>
|
||
<!-- 加入maven deploy插件,当在deploy时,忽略些model-->
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-deploy-plugin</artifactId>
|
||
<configuration>
|
||
<skip>true</skip>
|
||
</configuration>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
|
||
</project>
|