<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>top.jfunc.network</groupId>
  <artifactId>httpclient-apache</artifactId>
  <version>1.1.1</version>
  <name>httpclient-apache</name>
  <description>使用Apache HttpClient实现的通用HTTP接口</description>
  <url>https://gitee.com/xxssyyyyssxx/httpclient-interfacing</url>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>xxssyyyyssxx</id>
      <name>xiongshiyan</name>
      <email>xxssyyyyssxx@126.com</email>
    </developer>
  </developers>
  <scm>
    <connection>https://gitee.com/xxssyyyyssxx/httpclient-interfacing.git</connection>
    <developerConnection>https://gitee.com/xxssyyyyssxx/httpclient-interfacing.git</developerConnection>
    <url>https://gitee.com/xxssyyyyssxx/httpclient-interfacing</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>top.jfunc.network</groupId>
      <artifactId>httpclient-core</artifactId>
      <version>1.1.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.httpcomponents</groupId>
      <artifactId>httpclient</artifactId>
      <version>4.5.3</version>
      <scope>compile</scope>
      <exclusions>
        <exclusion>
          <artifactId>*</artifactId>
          <groupId>commons-logging</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.apache.httpcomponents</groupId>
      <artifactId>httpmime</artifactId>
      <version>4.5.3</version>
      <scope>compile</scope>
      <exclusions>
        <exclusion>
          <artifactId>*</artifactId>
          <groupId>commons-logging</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-library</artifactId>
      <version>1.3</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mock-server</groupId>
      <artifactId>mockserver-netty</artifactId>
      <version>5.5.4</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
