mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
REPO-3447 Remove c3p0 (#35)
Quartz uses c3p0 jdbc pool for it's distributed job storage since version 2.x This commit will exclude c3p0 lib as distributed job storage is not used.
This commit is contained in:
13
pom.xml
13
pom.xml
@@ -199,6 +199,19 @@
|
|||||||
<artifactId>alfresco-events</artifactId>
|
<artifactId>alfresco-events</artifactId>
|
||||||
<version>1.2.5</version>
|
<version>1.2.5</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.quartz-scheduler</groupId>
|
||||||
|
<artifactId>quartz</artifactId>
|
||||||
|
<version>2.3.0</version>
|
||||||
|
<!-- exclude c3p0 -->
|
||||||
|
<!-- see https://issues.alfresco.com/jira/browse/REPO-3447 -->
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>com.mchange</groupId>
|
||||||
|
<artifactId>*</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.httpcomponents</groupId>
|
<groupId>org.apache.httpcomponents</groupId>
|
||||||
<artifactId>httpcore</artifactId>
|
<artifactId>httpcore</artifactId>
|
||||||
|
Reference in New Issue
Block a user