JAVA-5619 - Updated Spring Boot Hikari version

This commit is contained in:
anuragkumawat 2021-06-12 13:20:07 +05:30
parent 339fb7ec44
commit 3a7f57ce45
2 changed files with 7 additions and 1 deletions

View File

@ -39,6 +39,7 @@
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>4.0.3</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
@ -52,7 +53,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<!-- Check for the most recent available version: https://projectlombok.org/changelog.html -->
<version>1.18.20</version>
<scope>provided</scope>
</dependency>
<dependency>

View File

@ -96,6 +96,11 @@
<artifactId>spring-restdocs-restassured</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>4.0.3</version>
</dependency>
</dependencies>
<build>