<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<modelVersion>4.0.0</modelVersion>
|
<parent>
|
<groupId>com.qianwen</groupId>
|
<artifactId>smart-parent</artifactId>
|
<version>1.0.0</version>
|
</parent>
|
|
<artifactId>smart-starter-http</artifactId>
|
|
|
<dependencies>
|
<dependency>
|
<groupId>com.qianwen</groupId>
|
<artifactId>smart-core-tool</artifactId>
|
<version>1.0.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.squareup.okhttp3</groupId>
|
<artifactId>okhttp</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.squareup.okhttp3</groupId>
|
<artifactId>logging-interceptor</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.jsoup</groupId>
|
<artifactId>jsoup</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.retry</groupId>
|
<artifactId>spring-retry</artifactId>
|
</dependency>
|
<!--
|
<dependency>
|
<groupId>com.google.code.findbugs</groupId>
|
<artifactId>jsr305</artifactId>
|
<scope>compile</scope>
|
</dependency>
|
-->
|
</dependencies>
|
|
</project>
|