84 lines
2.5 KiB
XML
84 lines
2.5 KiB
XML
<?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>com.hzs</groupId>
|
|
<artifactId>hzs</artifactId>
|
|
<version>3.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>hzs-business-lenjoy</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<description>
|
|
hzs-business-lenjoy乐享业务服务
|
|
</description>
|
|
|
|
<dependencies>
|
|
|
|
<!-- SpringCloud Alibaba Nacos -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
</dependency>
|
|
|
|
<!-- SpringCloud Alibaba Nacos Config -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
</dependency>
|
|
|
|
<!-- SpringCloud Alibaba Sentinel -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
|
</dependency>
|
|
|
|
<!-- SpringBoot Actuator -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
</dependency>
|
|
|
|
<!-- SpringBoot Web -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
<!--spring cloud alibaba dubbo 依赖-->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-dubbo</artifactId>
|
|
</dependency>
|
|
|
|
<!-- hzs common security-->
|
|
<dependency>
|
|
<groupId>com.hzs</groupId>
|
|
<artifactId>hzs-common-security</artifactId>
|
|
</dependency>
|
|
|
|
<!-- hutool工具包-->
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 切面逻辑处理 -->
|
|
<dependency>
|
|
<groupId>com.hzs</groupId>
|
|
<artifactId>hzs-common-aop</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<!-- <modules>-->
|
|
<!-- <module>hzs-business-lenjoy-member</module>-->
|
|
<!-- <module>hzs-business-lenjoy-sale</module>-->
|
|
<!-- </modules>-->
|
|
|
|
</project>
|