Browse Source

Exclude HikariCP specific dependency from Quartz

Closes gh-16628
pull/16730/head
ielatif 7 years ago committed by Stephane Nicoll
parent
commit
3ffbe256f1
  1. 2
      spring-boot-project/spring-boot-dependencies/pom.xml
  2. 6
      spring-boot-project/spring-boot-parent/pom.xml

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

@ -2600,7 +2600,7 @@ @@ -2600,7 +2600,7 @@
</exclusion>
<exclusion>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP-java6</artifactId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>

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

@ -572,6 +572,12 @@ @@ -572,6 +572,12 @@
</goals>
<configuration>
<rules>
<bannedDependencies>
<excludes>
<exclude>com.zaxxer:HikariCP-*</exclude>
</excludes>
<searchTransitive>true</searchTransitive>
</bannedDependencies>
<requireJavaVersion>
<version>[1.8,)</version>
</requireJavaVersion>

Loading…
Cancel
Save