Skip to content

Commit 02ec191

Browse files
committed
Merge pull request #16628 from ielatif
* pr/16628: Exclude HikariCP specific dependency from Quartz
2 parents 3c5ec8a + 3ffbe25 commit 02ec191

File tree

2 files changed

+7
-1
lines changed
  • spring-boot-project

2 files changed

+7
-1
lines changed

spring-boot-project/spring-boot-dependencies/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2600,7 +2600,7 @@
26002600
</exclusion>
26012601
<exclusion>
26022602
<groupId>com.zaxxer</groupId>
2603-
<artifactId>HikariCP-java6</artifactId>
2603+
<artifactId>*</artifactId>
26042604
</exclusion>
26052605
</exclusions>
26062606
</dependency>

spring-boot-project/spring-boot-parent/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -572,6 +572,12 @@
572572
</goals>
573573
<configuration>
574574
<rules>
575+
<bannedDependencies>
576+
<excludes>
577+
<exclude>com.zaxxer:HikariCP-*</exclude>
578+
</excludes>
579+
<searchTransitive>true</searchTransitive>
580+
</bannedDependencies>
575581
<requireJavaVersion>
576582
<version>[1.8,)</version>
577583
</requireJavaVersion>

0 commit comments

Comments
 (0)