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.
93 lines
2.9 KiB
93 lines
2.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>api</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
<description>乘客端的api模块</description>
|
|
<packaging>jar</packaging>
|
|
|
|
<artifactId>api-passenger</artifactId>
|
|
|
|
<dependencies>
|
|
<!-- Spring Web -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 健康检测 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-actuator</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-bootstrap</artifactId>
|
|
</dependency>
|
|
|
|
<!-- nacos配置中心 -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
</dependency>
|
|
|
|
<!-- nacos注册中心 -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
</dependency>
|
|
|
|
<!-- util 工具模块 -->
|
|
<dependency>
|
|
<groupId>com.greateme</groupId>
|
|
<artifactId>common-entity</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 验证码模块的远程调用 -->
|
|
<dependency>
|
|
<groupId>com.greateme</groupId>
|
|
<artifactId>verification-code-client</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 公共的注解模块 -->
|
|
<dependency>
|
|
<groupId>com.greateme</groupId>
|
|
<artifactId>common-annotation</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 验证码模块的远程调用 -->
|
|
<dependency>
|
|
<groupId>com.greateme</groupId>
|
|
<artifactId>verification-code-client</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 乘客用户模块的远程调用 -->
|
|
<dependency>
|
|
<groupId>com.greateme</groupId>
|
|
<artifactId>passenger-user-client</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 公共的web模块 -->
|
|
<dependency>
|
|
<groupId>com.greateme</groupId>
|
|
<artifactId>common-web</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>${project.artifactId}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |