Using the JDBC driver with Maven
The recommended way to use the YDB JDBC driver in a project is to include it as a Maven dependency. Specify the YDB JDBC driver in the dependencies
section of pom.xml
:
<dependencies>
<dependency>
<groupId>tech.ydb.jdbc</groupId>
<artifactId>ydb-jdbc-driver</artifactId>
<version><!-- actual version --></version>
</dependency>
</dependencies>