CUBRID JDBC is an API that allows users to connect to CUBRID database within applications written in Java.
In order to add CUBRID JDBC driver to your maven project, add the following dependency to your project's pom.xml file:
<dependency> <groupId>cubrid</groupId> <artifactId>cubrid-jdbc</artifactId> <version>8.4.3.1005</version> </dependency>
Remember to indicate the appropriate version number. The list of available versions can be found at http://maven.cubrid.org/cubrid/cubrid-jdbc/.
You should also add the repository information into your pom.xml file:
<repository> <id>CUBRID</id> <name>CUBRID-releases</name> <url>http://maven.cubrid.org</url> </repository>
This concludes the maven tutorial. If you have any question, please post it on our Q&A Site or on our forum.