111 lines
3.7 KiB
XML
111 lines
3.7 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.1.8.RELEASE</version>
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
</parent>
|
|
<groupId>com.xunqi.gulimall</groupId>
|
|
<artifactId>gulimall-member</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>gulimall-member</name>
|
|
<description>谷粒商城-会员服务</description>
|
|
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
<spring-cloud.version>Greenwich.SR3</spring-cloud.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<!--httpclient-->
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
<version>4.5.1</version>
|
|
</dependency>
|
|
<!--commons-io-->
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.6</version>
|
|
</dependency>
|
|
<!--gson-->
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>2.8.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.xunqi.gulimall</groupId>
|
|
<artifactId>gulimall-common</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- 模板引擎 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 引入redis -->
|
|
<!-- <dependency> -->
|
|
<!-- <groupId>org.springframework.boot</groupId> -->
|
|
<!-- <artifactId>spring-boot-starter-data-redis</artifactId> -->
|
|
<!-- </dependency> -->
|
|
|
|
<!-- 整合springsession -->
|
|
<!-- <dependency> -->
|
|
<!-- <groupId>org.springframework.session</groupId> -->
|
|
<!-- <artifactId>spring-session-data-redis</artifactId> -->
|
|
<!-- </dependency> -->
|
|
|
|
<!-- <dependency> -->
|
|
<!-- <groupId>org.springframework.boot</groupId> -->
|
|
<!-- <artifactId>spring-boot-starter-actuator</artifactId> -->
|
|
<!-- </dependency> -->
|
|
|
|
</dependencies>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-dependencies</artifactId>
|
|
<version>${spring-cloud.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|