Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Commit 9d8f47a

Browse files
Implemented and tested deps (#65)
* Bump spring-boot-starter-parent from 2.4.0 to 2.4.1 Bumps [spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 2.4.0 to 2.4.1. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](spring-projects/spring-boot@v2.4.0...v2.4.1) Signed-off-by: dependabot-preview[bot] <[email protected]> * Bump cucumber.version from 6.9.0 to 6.9.1 Bumps `cucumber.version` from 6.9.0 to 6.9.1. Updates `cucumber-java` from 6.9.0 to 6.9.1 - [Release notes](https://github.com/cucumber/cucumber-jvm/releases) - [Changelog](https://github.com/cucumber/cucumber-jvm/blob/main/CHANGELOG.md) - [Commits](cucumber/cucumber-jvm@v6.9.0...v6.9.1) Updates `cucumber-junit` from 6.9.0 to 6.9.1 - [Release notes](https://github.com/cucumber/cucumber-jvm/releases) - [Changelog](https://github.com/cucumber/cucumber-jvm/blob/main/CHANGELOG.md) - [Commits](cucumber/cucumber-jvm@v6.9.0...v6.9.1) Updates `cucumber-spring` from 6.9.0 to 6.9.1 - [Release notes](https://github.com/cucumber/cucumber-jvm/releases) - [Changelog](https://github.com/cucumber/cucumber-jvm/blob/main/CHANGELOG.md) - [Commits](cucumber/cucumber-jvm@v6.9.0...v6.9.1) Signed-off-by: dependabot-preview[bot] <[email protected]> * Bump mockito-core from 3.6.28 to 3.7.0 Bumps [mockito-core](https://github.com/mockito/mockito) from 3.6.28 to 3.7.0. - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](mockito/mockito@v3.6.28...v3.7.0) Signed-off-by: dependabot-preview[bot] <[email protected]> * Bump mockito-inline from 3.6.28 to 3.7.0 Bumps [mockito-inline](https://github.com/mockito/mockito) from 3.6.28 to 3.7.0. - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](mockito/mockito@v3.6.28...v3.7.0) Signed-off-by: dependabot-preview[bot] <[email protected]> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
1 parent 11f114c commit 9d8f47a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.4.0</version>
8+
<version>2.4.1</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>de.filefighter</groupId>
@@ -16,7 +16,7 @@
1616

1717
<properties>
1818
<java.version>11</java.version>
19-
<cucumber.version>6.9.0</cucumber.version>
19+
<cucumber.version>6.9.1</cucumber.version>
2020
<sonar.coverage.exclusions>**/data/**/*.java,**/configuration/*.java,**/exceptions/*.java
2121
</sonar.coverage.exclusions>
2222
</properties>
@@ -73,12 +73,12 @@
7373
<dependency>
7474
<groupId>org.mockito</groupId>
7575
<artifactId>mockito-core</artifactId>
76-
<version>3.6.28</version>
76+
<version>3.7.0</version>
7777
</dependency>
7878
<dependency>
7979
<groupId>org.mockito</groupId>
8080
<artifactId>mockito-inline</artifactId>
81-
<version>3.6.28</version>
81+
<version>3.7.0</version>
8282
</dependency>
8383
<dependency>
8484
<groupId>org.jetbrains</groupId>

0 commit comments

Comments
 (0)