rather than exclusion for mchange-common (lib for c3p0), import the version that rdbms will want directly in backend-core

This commit is contained in:
2024-06-06 19:45:12 -05:00
parent 64380dd849
commit 9e9d1960c8
2 changed files with 7 additions and 7 deletions

View File

@ -192,6 +192,13 @@
<version>2.3.2</version>
</dependency>
<!-- bring in a newer version of this lib, which quartz transitively loads through c3p0 -->
<dependency>
<groupId>com.mchange</groupId>
<artifactId>mchange-commons-java</artifactId>
<version>0.3.0</version>
</dependency>
<!-- Many of the deps we bring in use slf4j. This dep maps slf4j to our logger, log4j -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>

View File

@ -42,13 +42,6 @@
<groupId>com.kingsrook.qqq</groupId>
<artifactId>qqq-backend-core</artifactId>
<version>${revision}</version>
<exclusions>
<exclusion>
<!-- for c3p0 connection pooling - transitively brought in by quartz -->
<groupId>com.mchange</groupId>
<artifactId>mchange-commons-java</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- 3rd party deps specifically for this module -->