2024-03-05 07:42:27 +00:00
|
|
|
|
<?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.recovery</groupId>
|
|
|
|
|
<artifactId>hoe-recovery</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
<description>认证中心</description>
|
|
|
|
|
<artifactId>hoe-auth</artifactId>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<!--Spring Cloud & Alibaba -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-bootstrap</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.recovery</groupId>
|
|
|
|
|
<artifactId>common-base</artifactId>
|
|
|
|
|
<version>${hoe-version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.recovery</groupId>
|
|
|
|
|
<artifactId>common-mybatis-plus</artifactId>
|
|
|
|
|
<version>${hoe-version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 注册中心 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-03-11 06:36:28 +00:00
|
|
|
|
|
|
|
|
|
<!-- Sa-Token 权限认证, 在线文档:https://sa-token.cc -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.dev33</groupId>
|
|
|
|
|
<artifactId>sa-token-spring-boot-starter</artifactId>
|
|
|
|
|
<version>1.37.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
2024-03-05 07:42:27 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-loadbalancer</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 配置中心 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-03-11 06:36:28 +00:00
|
|
|
|
|
2024-03-05 07:42:27 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.recovery</groupId>
|
|
|
|
|
<artifactId>common-web</artifactId>
|
|
|
|
|
<version>${hoe-version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>com.spotify</groupId>
|
|
|
|
|
<artifactId>docker-maven-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|