Merge pull request #16628 from ielatif
* pr/16628: Exclude HikariCP specific dependency from Quartz
This commit is contained in:
commit
02ec1911fc
|
@ -2600,7 +2600,7 @@
|
||||||
</exclusion>
|
</exclusion>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<groupId>com.zaxxer</groupId>
|
<groupId>com.zaxxer</groupId>
|
||||||
<artifactId>HikariCP-java6</artifactId>
|
<artifactId>*</artifactId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
|
@ -572,6 +572,12 @@
|
||||||
</goals>
|
</goals>
|
||||||
<configuration>
|
<configuration>
|
||||||
<rules>
|
<rules>
|
||||||
|
<bannedDependencies>
|
||||||
|
<excludes>
|
||||||
|
<exclude>com.zaxxer:HikariCP-*</exclude>
|
||||||
|
</excludes>
|
||||||
|
<searchTransitive>true</searchTransitive>
|
||||||
|
</bannedDependencies>
|
||||||
<requireJavaVersion>
|
<requireJavaVersion>
|
||||||
<version>[1.8,)</version>
|
<version>[1.8,)</version>
|
||||||
</requireJavaVersion>
|
</requireJavaVersion>
|
||||||
|
|
Loading…
Reference in New Issue