Skip to content

How to add additional artifacts to the driver

dbeaver-devops edited this page Sep 15, 2025 · 10 revisions

Table of contents

DBeaver has the functionality to add and edit artifacts in existing drivers.

You can add or edit artifacts in existing drivers:

  1. Open the driver: Go to Database -> Driver Manager -> select a driver -> Libraries tab

  2. Edit an artifact: Double-click the library you want to change

  3. Add an artifact: Click Add Artifact

Modes

When adding artifacts, you can choose between two modes. Editing only supports the second one.

  1. Dependency declaration: Paste artifact coordinates or Maven XML. Supported formats:

    • Gradle format:

      group:artifact_name:version
      
    • Single Maven dependency:

      <dependency>
          <groupId>group</groupId>
          <artifactId>artifact</artifactId>
          <version>version</version>
      </dependency>
    • Multiple Maven dependencies:

      <dependencies>
          <dependency>
              <groupId>group</groupId>
              <artifactId>artifact</artifactId>
              <version>version</version>
          </dependency>
          <dependency>
              <groupId>group</groupId>
              <artifactId>artifact</artifactId>
              <version>version</version>
          </dependency>
      </dependencies>

    Dependency Declaration

  2. Declare artifacts manually: Add artifacts one at a time with input fields.

    Declare artifacts manually

DBeaver Documentation

Clone this wiki locally