diff --git a/pom.xml b/pom.xml
index 970ee28c5..8456ff03c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -8,7 +8,7 @@
tech.cassandre.trading.bot
cassandre-trading-bot-project
- 0.0.12
+ 0.0.13
pom
Cassandre trading bot
https://github.com/cassandre-tech/cassandre-trading-bot
diff --git a/trading-bot-spring-boot-autoconfigure/pom.xml b/trading-bot-spring-boot-autoconfigure/pom.xml
index b15cd538a..48b204918 100644
--- a/trading-bot-spring-boot-autoconfigure/pom.xml
+++ b/trading-bot-spring-boot-autoconfigure/pom.xml
@@ -86,7 +86,7 @@
org.junit-pioneer
junit-pioneer
- 0.5.4
+ 0.5.5
test
@@ -255,7 +255,7 @@
tech.cassandre.trading.bot
cassandre-trading-bot-project
- 0.0.12
+ 0.0.13
diff --git a/trading-bot-spring-boot-autoconfigure/src/test/java/tech/cassandre/trading/bot/test/batch/AllFluxTest.java b/trading-bot-spring-boot-autoconfigure/src/test/java/tech/cassandre/trading/bot/test/batch/AllFluxTest.java
index 2535fe973..ea056bf13 100644
--- a/trading-bot-spring-boot-autoconfigure/src/test/java/tech/cassandre/trading/bot/test/batch/AllFluxTest.java
+++ b/trading-bot-spring-boot-autoconfigure/src/test/java/tech/cassandre/trading/bot/test/batch/AllFluxTest.java
@@ -34,6 +34,7 @@
import static org.awaitility.Awaitility.with;
import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.mockito.BDDMockito.given;
import static org.mockito.Mockito.mock;
@@ -92,8 +93,8 @@ public void multiThreadTest() {
with().await().untilAsserted(() -> assertEquals(numberOfValuesExpected, testableStrategy.getOrdersUpdateReceived().size()));
// Checking that all other data have been received.
- assertTrue(testableStrategy.getTickersUpdateReceived().size() > 1);
- assertTrue(testableStrategy.getAccountsUpdatesReceived().size() > 1);
+ assertFalse(testableStrategy.getTickersUpdateReceived().isEmpty());
+ assertFalse(testableStrategy.getAccountsUpdatesReceived().isEmpty());
}
/**
diff --git a/trading-bot-spring-boot-starter-archetype/pom.xml b/trading-bot-spring-boot-starter-archetype/pom.xml
index 23d6f4f78..1603e31b7 100644
--- a/trading-bot-spring-boot-starter-archetype/pom.xml
+++ b/trading-bot-spring-boot-starter-archetype/pom.xml
@@ -103,7 +103,7 @@
tech.cassandre.trading.bot
cassandre-trading-bot-project
- 0.0.12
+ 0.0.13
diff --git a/trading-bot-spring-boot-starter/pom.xml b/trading-bot-spring-boot-starter/pom.xml
index 57e8d348c..3d29117a9 100644
--- a/trading-bot-spring-boot-starter/pom.xml
+++ b/trading-bot-spring-boot-starter/pom.xml
@@ -111,7 +111,7 @@
tech.cassandre.trading.bot
cassandre-trading-bot-project
- 0.0.12
+ 0.0.13
diff --git a/trading-bot-strategies/dumb/pom.xml b/trading-bot-strategies/dumb/pom.xml
index 6e71336fa..6849c45b5 100644
--- a/trading-bot-strategies/dumb/pom.xml
+++ b/trading-bot-strategies/dumb/pom.xml
@@ -38,7 +38,7 @@
tech.cassandre.trading.bot
cassandre-trading-bot-spring-boot-starter
- 0.0.12
+ 0.0.13
diff --git a/trading-bot-strategies/technical_analysis/ta4j-strategy/pom.xml b/trading-bot-strategies/technical_analysis/ta4j-strategy/pom.xml
index 4112e7a4f..105d75f4e 100644
--- a/trading-bot-strategies/technical_analysis/ta4j-strategy/pom.xml
+++ b/trading-bot-strategies/technical_analysis/ta4j-strategy/pom.xml
@@ -36,7 +36,7 @@
tech.cassandre.trading.bot
cassandre-trading-bot-spring-boot-starter
- 0.0.12
+ 0.0.13