Commit 02ec1911 authored by Stephane Nicoll's avatar Stephane Nicoll

Merge pull request #16628 from ielatif

* pr/16628:
  Exclude HikariCP specific dependency from Quartz
parents 3c5ec8a0 3ffbe256
......@@ -2600,7 +2600,7 @@
</exclusion>
<exclusion>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP-java6</artifactId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
......
......@@ -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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment