Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
wakaleo committed Aug 15, 2024
1 parent f209c51 commit 7dc0571
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 14 deletions.
18 changes: 9 additions & 9 deletions bddtrader-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<java.version>17</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<encoding>UTF-8</encoding>
<serenity.version>4.0.1</serenity.version>
<serenity.version>4.1.20</serenity.version>
</properties>

<dependencies>
Expand All @@ -42,12 +42,12 @@
<dependency>
<groupId>com.typesafe</groupId>
<artifactId>config</artifactId>
<version>1.3.2</version>
<version>1.4.3</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.28</version>
<version>1.18.34</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
Expand All @@ -69,7 +69,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>5.3.1</version>
<version>5.12.0</version>
<scope>test</scope>
</dependency>
<!-- Serenity dependencies -->
Expand Down Expand Up @@ -118,7 +118,7 @@
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-junit-platform-engine</artifactId>
<version>7.13.0</version>
<version>7.18.1</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -127,7 +127,7 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>3.1.0</version>
<version>3.3.2</version>
<executions>
<execution>
<goals>
Expand All @@ -151,7 +151,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
<version>3.2.5</version>
<configuration>
<includes>
<include>**/When*.java</include>
Expand All @@ -162,7 +162,7 @@
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.1.2</version>
<version>3.2.5</version>
<configuration>
<includes>
<include>**/acceptancetests/*.java</include>
Expand All @@ -179,7 +179,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<version>3.8.1</version>
<configuration>
<source>17</source>
<target>17</target>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,7 @@ public void should_have_portfolio_with_cash(float expectedBalance) {
Client registeredClient = tim.recall("registeredClient");

tim.should(
seeThat(ThePortfolio.cashBalanceFor(registeredClient),
is(equalTo(expectedBalance)))
seeThat(ThePortfolio.cashBalanceFor(registeredClient), is(equalTo(expectedBalance)))
);
}
}
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit5.version>5.9.3</junit5.version>
<junit-platform-suite-api.version>1.9.3</junit-platform-suite-api.version>
<junit5.version>5.10.3</junit5.version>
<junit-platform-suite-api.version>1.10.3</junit-platform-suite-api.version>
</properties>

<dependencies>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.24.2</version>
<version>3.26.3</version>
<scope>test</scope>
</dependency>

Expand Down

0 comments on commit 7dc0571

Please sign in to comment.