Skip to content

Commit

Permalink
Merge remote-tracking branch 'github/develop' into bybit-v5
Browse files Browse the repository at this point in the history
  • Loading branch information
bigscoop committed Dec 7, 2023
2 parents e972835 + 5bd548a commit ffbef24
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@

<version.java>1.8</version.java>
<version.assertj>3.24.2</version.assertj>
<version.commons.lang3>3.13.0</version.commons.lang3>
<version.commons.lang3>3.14.0</version.commons.lang3>
<version.fasterxml>2.14.3</version.fasterxml>
<version.github.mmazi>3.0</version.github.mmazi>
<version.resilience4j>1.7.0</version.resilience4j>
<version.junit>5.9.3</version.junit>
<version.lombok>1.18.26</version.lombok>
<version.knowm.xchart>3.8.6</version.knowm.xchart>
<version.qos.logback>1.4.11</version.qos.logback>
<version.qos.logback>1.4.12</version.qos.logback>
<version.reflections>0.10.2</version.reflections>
<version.slf4j>2.0.6</version.slf4j>
<version.crypto>5.0.0</version.crypto>
Expand Down Expand Up @@ -310,7 +310,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>31.1-jre</version>
<version>32.1.3-jre</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -548,7 +548,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
<version>3.2.2</version>
</plugin>

<plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import org.knowm.xchange.service.trade.params.TradeHistoryParamInstrument;

@Ignore
public class KrakenFuturesPrivateDataTest {
public class KrakenFuturesPrivateDataIntegration {

Exchange exchange;
Instrument instrument = new FuturesContract("BTC/USD/PERP");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import org.knowm.xchange.dto.meta.InstrumentMetaData;
import org.knowm.xchange.instrument.Instrument;

public class KrakenFuturesPublicDataTest {
public class KrakenFuturesPublicDataIntegration {

Exchange exchange = ExchangeFactory.INSTANCE.createExchange(KrakenFuturesExchange.class);
Instrument instrument = new FuturesContract("BTC/USD/PERP");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
import org.slf4j.LoggerFactory;

@Ignore
public class OkexPrivateDataTest {
public class OkexPrivateDataIntegration {

private final Logger LOG = LoggerFactory.getLogger(OkexPrivateDataTest.class);
private final Logger LOG = LoggerFactory.getLogger(OkexPrivateDataIntegration.class);
Instrument instrument = new FuturesContract("BTC/USDT/SWAP");
Exchange exchange;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import org.knowm.xchange.okex.dto.marketdata.OkexCandleStick;
import org.knowm.xchange.okex.service.OkexMarketDataService;

public class OkexPublicDataTest {
public class OkexPublicDataIntegration {

Exchange exchange;
private final Instrument currencyPair = new CurrencyPair("BTC/USDT");
Expand Down
2 changes: 1 addition & 1 deletion xchange-serum/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<dependency>
<groupId>com.igormaznitsa</groupId>
<artifactId>jbbp</artifactId>
<version>2.0.4</version>
<version>2.0.6</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions xchange-stream-bitmex/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
<version>3.2.2</version>
<configuration>
<excludes>
<exclude>**/*IT.java</exclude>
Expand All @@ -38,7 +38,7 @@
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
<version>3.2.2</version>
<configuration>
<includes>
<include>**/*IT.java</include>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
import org.slf4j.LoggerFactory;

@Ignore
public class KrakenFuturesStreamingPrivateDataTest {
public class KrakenFuturesStreamingPrivateDataIntegration {

private static final Logger LOG =
LoggerFactory.getLogger(KrakenFuturesStreamingPrivateDataTest.class);
LoggerFactory.getLogger(KrakenFuturesStreamingPrivateDataIntegration.class);
StreamingExchange exchange;
Instrument instrument = new FuturesContract("BTC/USD/PERP");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import org.knowm.xchange.instrument.Instrument;

@Ignore
public class KrakenFuturesStreamingPublicDataTest {
public class KrakenFuturesStreamingPublicDataIntegration {

StreamingExchange exchange =
StreamingExchangeFactory.INSTANCE.createExchange(KrakenFuturesStreamingExchange.class);
Expand Down

0 comments on commit ffbef24

Please sign in to comment.