From 900c9b20cca19df60d14b9ea61d336ba640250f0 Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Mon, 11 May 2026 10:49:57 +0800
Subject: [PATCH] fix(gateApi): 修复网格交易中仓位大小更新逻辑
---
pom.xml | 65 ++++++++++++++++++++++++++++++++
1 files changed, 65 insertions(+), 0 deletions(-)
diff --git a/pom.xml b/pom.xml
index 0438973..885db64 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,6 +35,14 @@
</properties>
<dependencies>
+
+ <!-- Source: https://mvnrepository.com/artifact/io.gate/gate-api -->
+ <dependency>
+ <groupId>io.gate</groupId>
+ <artifactId>gate-api</artifactId>
+ <version>7.2.71</version>
+ <scope>compile</scope>
+ </dependency>
<dependency>
<groupId>ripple</groupId>
@@ -42,6 +50,47 @@
<version>0.0.1</version>
<scope>system</scope>
<systemPath>${basedir}/lib/ripple-core-0.0.1-SNAPSHOT.jar</systemPath>
+ </dependency>
+
+ <dependency>
+ <groupId>org.json</groupId>
+ <artifactId>json</artifactId>
+ <version>20230618</version>
+ </dependency>
+
+
+
+ <dependency>
+ <groupId>org.web3j</groupId>
+ <artifactId>core</artifactId>
+ <version>4.5.5</version>
+ </dependency>
+
+
+ <dependency>
+ <groupId>com.squareup.okhttp3</groupId>
+ <artifactId>okhttp</artifactId>
+ <!-- <version>3.6.0</version>-->
+ </dependency>
+
+ <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/logging-interceptor -->
+ <dependency>
+ <groupId>com.squareup.okhttp3</groupId>
+ <artifactId>logging-interceptor</artifactId>
+ <version>3.6.0</version>
+ </dependency>
+
+ <!-- https://mvnrepository.com/artifact/org.web3j/parity -->
+ <dependency>
+ <groupId>org.web3j</groupId>
+ <artifactId>parity</artifactId>
+ <version>4.5.10</version>
+ <exclusions>
+ <exclusion>
+ <artifactId>core</artifactId>
+ <groupId>org.web3j</groupId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
@@ -243,6 +292,12 @@
<scope>system</scope>
<systemPath>${basedir}/lib/huobi-client-1.0.8-SNAPSHOT.jar</systemPath>
</dependency>
+
+ <dependency>
+ <groupId>org.java-websocket</groupId>
+ <artifactId>Java-WebSocket</artifactId>
+ <version>1.5.3</version>
+ </dependency>
<!-- submail邮件 start -->
<dependency>
@@ -276,6 +331,16 @@
<artifactId>httpmime</artifactId>
<version>4.3.5</version>
</dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-pool2</artifactId>
+ </dependency>
<!-- submail邮件 end -->
</dependencies>
--
Gitblit v1.9.1