mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-11 21:57:56 +08:00
117 lines
3.9 KiB
XML
117 lines
3.9 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">
|
||
<parent>
|
||
<groupId>com.gitee.sop</groupId>
|
||
<artifactId>sop-parent</artifactId>
|
||
<version>1.0.0-SNAPSHOT</version>
|
||
<relativePath>../pom.xml</relativePath> <!-- lookup parent from repository -->
|
||
</parent>
|
||
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<artifactId>sop-gateway</artifactId>
|
||
|
||
<properties>
|
||
<java.version>1.8</java.version>
|
||
</properties>
|
||
|
||
<dependencies>
|
||
<!--
|
||
<artifactId>sop-bridge-nacos</artifactId> : 使用nacos注册中心
|
||
<artifactId>sop-bridge-eureka</artifactId> : 使用eureka注册中心
|
||
-->
|
||
<dependency>
|
||
<groupId>com.gitee.sop</groupId>
|
||
<artifactId>sop-bridge-nacos</artifactId>
|
||
<!-- <artifactId>sop-bridge-eureka</artifactId>-->
|
||
<version>4.0.3-SNAPSHOT</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-gateway</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-webflux</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-actuator</artifactId>
|
||
</dependency>
|
||
|
||
<!--
|
||
修复:Spring Cloud Hoxton.SR1 gateway 与reactor-netty 0.9.3.RELEASE不兼容问题
|
||
https://blog.csdn.net/sun800711/article/details/104061049
|
||
-->
|
||
<dependency>
|
||
<groupId>io.projectreactor.netty</groupId>
|
||
<artifactId>reactor-netty</artifactId>
|
||
<version>0.9.4.RELEASE</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>net.oschina.durcframework</groupId>
|
||
<artifactId>fastmybatis-spring-boot-starter</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>mysql</groupId>
|
||
<artifactId>mysql-connector-java</artifactId>
|
||
<scope>runtime</scope>
|
||
</dependency>
|
||
|
||
<!-- test -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-test</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<!-- provided -->
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<version>1.18.4</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>javax.servlet</groupId>
|
||
<artifactId>javax.servlet-api</artifactId>
|
||
<version>3.1.0</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
</plugin>
|
||
<!-- 打包时跳过测试 -->
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-surefire-plugin</artifactId>
|
||
<version>2.12.4</version>
|
||
<configuration>
|
||
<skipTests>true</skipTests>
|
||
</configuration>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
|
||
<repositories>
|
||
<repository>
|
||
<id>spring-milestones</id>
|
||
<name>Spring Milestones</name>
|
||
<url>https://repo.spring.io/milestone</url>
|
||
</repository>
|
||
<repository>
|
||
<id>maven2</id>
|
||
<name>maven2</name>
|
||
<url>https://repo1.maven.org/maven2</url>
|
||
</repository>
|
||
</repositories>
|
||
|
||
</project>
|