This page gives you a quick reference to get C3P0 dependency for Maven or Gradle projects. You can also download the C3P0 jar dependency, the link given at the "Download JAR File" section.
A JDBC Connection pooling / Statement caching library.
For more details about the proper version to use, check out the following Maven Central link.
A JDBC Connection pooling / Statement caching library.
C3P0 Maven Dependency
Copy below C3P0 maven dependency and paste in your project pom.xml file:
<!-- https://mvnrepository.com/artifact/com.mchange/c3p0 -->
<dependency>
<groupId>com.mchange</groupId>
<artifactId>c3p0</artifactId>
<version>0.9.5.4</version>
</dependency>
C3P0 Gradle Dependency
Copy below C3P0 Gradle dependency and paste in your project build.gradle file:
// https://mvnrepository.com/artifact/com.mchange/c3p0
compile group: 'com.mchange', name: 'c3p0', version: '0.9.5.4'
Comments
Post a Comment