<?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.doumee</groupId>
|
<artifactId>yunyibao</artifactId>
|
<version>1.0.0-SNAPSHOT</version>
|
</parent>
|
|
<artifactId>dianziqian</artifactId>
|
|
<properties>
|
<maven.compiler.source>8</maven.compiler.source>
|
<maven.compiler.target>8</maven.compiler.target>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
</properties>
|
<dependencies>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
<version>3.1</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-codec</groupId>
|
<artifactId>commons-codec</artifactId>
|
<version>1.9</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>1.2.28</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
<version>4.5.2</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpmime</artifactId>
|
<version>4.5.2</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-io</groupId>
|
<artifactId>commons-io</artifactId>
|
<version>2.4</version>
|
</dependency>
|
<dependency>
|
<groupId>ch.qos.logback</groupId>
|
<artifactId>logback-classic</artifactId>
|
<version>1.1.11</version>
|
</dependency>
|
<!-- <dependency>
|
<groupId>org.slf4j</groupId>
|
<artifactId>log4j-over-slf4j</artifactId>
|
<version>1.7.26</version>
|
</dependency>
|
|
<dependency>
|
<groupId>junit</groupId>
|
<artifactId>junit</artifactId>
|
<version>4.12</version>
|
<scope>test</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<version>1.16.18</version>
|
<scope>provided</scope>
|
</dependency>
|
|
|
<dependency>
|
<groupId>io.swagger</groupId>
|
<artifactId>swagger-annotations</artifactId>
|
<version>1.5.14</version>
|
<scope>provided</scope>
|
</dependency>-->
|
</dependencies>
|
|
</project>
|