115 lines
3.5 KiB
XML
115 lines
3.5 KiB
XML
<?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">
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<parent>
|
||
<groupId>com.zhilian</groupId>
|
||
<artifactId>zhilian-modules</artifactId>
|
||
<version>3.6.3</version>
|
||
</parent>
|
||
|
||
<artifactId>zhilian-mybatis-plus</artifactId>
|
||
|
||
|
||
<description>
|
||
zhilian-mybatis-plus测试
|
||
</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>
|
||
|
||
<!-- FastDFS -->
|
||
<dependency>
|
||
<groupId>com.github.tobato</groupId>
|
||
<artifactId>fastdfs-client</artifactId>
|
||
</dependency>
|
||
|
||
<!-- Minio -->
|
||
<dependency>
|
||
<groupId>io.minio</groupId>
|
||
<artifactId>minio</artifactId>
|
||
<version>${minio.version}</version>
|
||
</dependency>
|
||
|
||
|
||
<!-- zhilian Common Swagger -->
|
||
<dependency>
|
||
<groupId>com.zhilian</groupId>
|
||
<artifactId>zhilian-common-swagger</artifactId>
|
||
</dependency>
|
||
|
||
<!-- zhilian Common System-->
|
||
<dependency>
|
||
<groupId>com.zhilian</groupId>
|
||
<artifactId>zhilian-common-system</artifactId>
|
||
</dependency>
|
||
|
||
<!-- Mysql Connector -->
|
||
<dependency>
|
||
<groupId>com.mysql</groupId>
|
||
<artifactId>mysql-connector-j</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.zhilian</groupId>
|
||
<artifactId>zhilian-common-security</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.zhilian</groupId>
|
||
<artifactId>zhilian-common-log</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> |