65 lines
2.3 KiB
XML
65 lines
2.3 KiB
XML
<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.atguigu</groupId>
|
||
<artifactId>spzx-common</artifactId>
|
||
<version>1.0-SNAPSHOT</version>
|
||
</parent>
|
||
|
||
<artifactId>common-service</artifactId>
|
||
<packaging>jar</packaging>
|
||
|
||
<name>common-service</name>
|
||
<url>https://maven.apache.org</url>
|
||
|
||
<properties>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
</properties>
|
||
|
||
<dependencies>
|
||
<!-- 自己的模块 -->
|
||
<dependency>
|
||
<groupId>com.atguigu</groupId>
|
||
<artifactId>common-util</artifactId>
|
||
<version>1.0-SNAPSHOT</version>
|
||
</dependency>
|
||
<!-- spring boot web开发所需要的起步依赖 -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
</dependency>
|
||
<!--支持配置属性类,yml文件中可以提示配置项-->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-configuration-processor</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.httpcomponents</groupId>
|
||
<artifactId>httpclient</artifactId>
|
||
<version>4.5.14</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>12.0.5</version>
|
||
</dependency>
|
||
<!-- openfeign依赖 -->
|
||
<dependency>
|
||
<groupId>org.springframework.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
</dependencies>
|
||
</project>
|