Use HikariCP is jdbc and jpa starters
This commit is a companion of what was done in #6013. As HikariCP is now the default connection pool, the jdbc and jpa starters no longer provide `tomcat-jdbc`, but rather `HikariCP`. Closes gh-9392
This commit is contained in:
@@ -23,8 +23,8 @@
|
||||
<artifactId>spring-boot-starter</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-jdbc</artifactId>
|
||||
<groupId>com.zaxxer</groupId>
|
||||
<artifactId>HikariCP</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
|
||||
@@ -1 +1 @@
|
||||
provides: spring-jdbc,spring-tx,tomcat-jdbc
|
||||
provides: spring-jdbc,spring-tx,HikariCP
|
||||
Reference in New Issue
Block a user