<?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">
|
<modelVersion>4.0.0</modelVersion>
|
<parent>
|
<groupId>cn.mb.cloud</groupId>
|
<artifactId>mb-cloud-parent</artifactId>
|
<version>1.1.3</version>
|
<relativePath>../cloud-server-parent/pom.xml</relativePath>
|
</parent>
|
|
<artifactId>mb-cloud-gateway</artifactId>
|
<packaging>jar</packaging>
|
<name>网关</name>
|
<description>网关</description>
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
<groupId>io.netty</groupId>
|
<artifactId>netty-all</artifactId>
|
<version>4.1.27.Final</version>
|
</dependency>
|
<dependency>
|
<groupId>cn.mb.cloud</groupId>
|
<artifactId>mb-cloud-common-gateway</artifactId>
|
</dependency>
|
<!--更改mybatis版本-->
|
<dependency>
|
<groupId>org.mybatis</groupId>
|
<artifactId>mybatis</artifactId>
|
<version>3.5.6</version>
|
</dependency>
|
<!--引入swagger-->
|
<dependency>
|
<groupId>com.spring4all</groupId>
|
<artifactId>swagger-spring-boot-starter</artifactId>
|
<version>1.7.0.RELEASE</version>
|
</dependency>
|
<dependency>
|
<groupId>redis.clients</groupId>
|
<artifactId>jedis</artifactId>
|
<version>2.9.0</version>
|
</dependency>
|
</dependencies>
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<version>2.3.4.RELEASE</version>
|
<executions>
|
<execution>
|
<goals>
|
<goal>repackage</goal>
|
</goals>
|
</execution>
|
</executions>
|
</plugin>
|
|
</plugins>
|
</build>
|
|
<repositories>
|
<repository>
|
<id>magic-beans-releases</id>
|
<url>http://maven.magic-beans.cn/nexus/content/repositories/releases/</url>
|
</repository>
|
<repository>
|
<id>aliyun</id>
|
<name>aliyun</name>
|
<url>https://maven.aliyun.com/repository/public</url>
|
</repository>
|
</repositories>
|
</project>
|