<?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">
|
<parent>
|
<artifactId>trading-order</artifactId>
|
<groupId>com.yami.trading</groupId>
|
<version>0.0.1-SNAPSHOT</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>trading-order-huobi</artifactId>
|
|
<dependencies>
|
<!-- SpringWebSocket依赖 -->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>${fastjson.version}</version>
|
<exclusions>
|
<!-- 排除 fastjson 带的 okhttp 依赖 -->
|
<exclusion>
|
<groupId>com.squareup.okhttp3</groupId>
|
<artifactId>okhttp</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
<version>${httpclient.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>commons-httpclient</groupId>
|
<artifactId>commons-httpclient</artifactId>
|
<version>${commons-httpclient.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
<version>${commons-lang3.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.yami.trading</groupId>
|
<artifactId>trading-order-service</artifactId>
|
<version>${trading-order.version}</version>
|
</dependency>
|
</dependencies>
|
|
</project>
|