146 lines
5.1 KiB
XML
146 lines
5.1 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">
|
||
<parent>
|
||
<artifactId>gulimall</artifactId>
|
||
<groupId>com.xunqi.gulimall</groupId>
|
||
<version>0.0.1-SNAPSHOT</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<properties>
|
||
<java.version>1.8</java.version>
|
||
<spring-cloud.version>Greenwich.SR3</spring-cloud.version>
|
||
</properties>
|
||
|
||
<artifactId>gulimall-common</artifactId>
|
||
<description>每一个微服务公共的依赖,bean,工具类等</description>
|
||
|
||
<dependencies>
|
||
<!-- mybatis-plus-->
|
||
<dependency>
|
||
<groupId>com.baomidou</groupId>
|
||
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||
<version>3.2.0</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<version>1.18.8</version>
|
||
</dependency>
|
||
|
||
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
|
||
<dependency>
|
||
<groupId>org.apache.httpcomponents</groupId>
|
||
<artifactId>httpcore</artifactId>
|
||
<version>4.4.12</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>commons-lang</groupId>
|
||
<artifactId>commons-lang</artifactId>
|
||
<version>2.6</version>
|
||
</dependency>
|
||
|
||
<!-- 导入mysql驱动 -->
|
||
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
|
||
<dependency>
|
||
<groupId>mysql</groupId>
|
||
<artifactId>mysql-connector-java</artifactId>
|
||
<version>8.0.17</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>javax.servlet</groupId>
|
||
<artifactId>servlet-api</artifactId>
|
||
<version>2.5</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<!-- 服务注册/发现-->
|
||
<dependency>
|
||
<groupId>com.alibaba.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
||
</dependency>
|
||
|
||
<!-- 配置中心来做配置管理 -->
|
||
<dependency>
|
||
<groupId>com.alibaba.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>javax.validation</groupId>
|
||
<artifactId>validation-api</artifactId>
|
||
<version>2.0.1.Final</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>fastjson</artifactId>
|
||
<version>1.2.15</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.httpcomponents</groupId>
|
||
<artifactId>httpclient</artifactId>
|
||
<version>4.2.1</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.httpcomponents</groupId>
|
||
<artifactId>httpcore</artifactId>
|
||
<version>4.2.1</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-lang</groupId>
|
||
<artifactId>commons-lang</artifactId>
|
||
<version>2.6</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.eclipse.jetty</groupId>
|
||
<artifactId>jetty-util</artifactId>
|
||
<version>9.3.7.v20160115</version>
|
||
</dependency>
|
||
|
||
<!-- <dependency> -->
|
||
<!-- <groupId>com.alibaba.cloud</groupId> -->
|
||
<!-- <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId> -->
|
||
<!-- </dependency> -->
|
||
|
||
<!-- 引入链路追踪sleuth -->
|
||
<!-- <dependency>-->
|
||
<!-- <groupId>org.springframework.cloud</groupId>-->
|
||
<!-- <artifactId>spring-cloud-starter-sleuth</artifactId>-->
|
||
<!-- <version>2.1.0.RELEASE</version>-->
|
||
<!-- </dependency>-->
|
||
|
||
<!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-zipkin -->
|
||
<!-- <dependency> -->
|
||
<!-- <groupId>org.springframework.cloud</groupId> -->
|
||
<!-- <artifactId>spring-cloud-starter-zipkin</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>
|
||
|
||
<dependency>
|
||
<groupId>com.alibaba.cloud</groupId>
|
||
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
|
||
<version>2.1.0.RELEASE</version>
|
||
<type>pom</type>
|
||
<scope>import</scope>
|
||
</dependency>
|
||
</dependencies>
|
||
</dependencyManagement>
|
||
</project> |