Skip to content

How to add additional artifacts to the driver

DBeaverDevOps edited this page Feb 9, 2024 · 1 revision

Table of contents

Introduction

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

How to open

Database -> Driver Manager -> Select driver-> Libraries

How to edit

Double click on the library

How to add

Click `Add Artifact`

How to use

For add mode, DBeaver supports two modes Dependency Declaration and Declare Artifacts Manually. The editing mode only supports the second Declare Artifacts Manually.

Dependency Declaration

Mode parses the inputted text and creates artifacts out of the results of parsing. It supports the multiple input formats written below.

Dependency Declaration

Supported formats

  • Short Gradle

    group:artifact_name:version
    
  • Maven

    • For a single artifact

      <dependency>
          <groupId>group</groupid>
          <artifactId>artifact</artifactId>
          <version>version</version>
      </dependency>
    • For multiple artifacts

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

Declare Artifacts Manually

It allows you to manually set up parameters. It allows you to add only one item per dialog.

Declare artifacts manually

DBeaver Desktop Documentation

General User Guide

Database Management

DBeaver PRO

Databases support

Customizing DBeaver

Troubleshooting

Admin Guide

License management

Tutorials

Development

Clone this wiki locally