You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.9 KiB
58 lines
1.9 KiB
<?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.greateme</groupId>
|
|
<artifactId>feign-client</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
<packaging>jar</packaging>
|
|
<description>乘客用户模块的远程调用</description>
|
|
|
|
<artifactId>passenger-user-client</artifactId>
|
|
|
|
<properties>
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<!-- util 工具模块 -->
|
|
<dependencies>
|
|
<!-- 远程调用 -->
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 负载均衡器 -->
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-loadbalancer</artifactId>
|
|
</dependency>
|
|
|
|
<!-- util 工具模块 -->
|
|
<dependency>
|
|
<groupId>com.greateme</groupId>
|
|
<artifactId>common-util</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- 公共常量类模块 -->
|
|
<dependency>
|
|
<groupId>com.greateme</groupId>
|
|
<artifactId>common-constant</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- 验证码模块的远程调用 -->
|
|
<dependency>
|
|
<groupId>com.greateme</groupId>
|
|
<artifactId>verification-code-client</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |