How to add additional artifacts to the driver - bobbyiliev/dbeaver GitHub Wiki
DBeaver has the functionality to add and edit artifacts in existing drivers.
Database -> Driver Manager ->
Select driver
-> Libraries
Double click on the library
Click `Add Artifact`
For add mode, DBeaver supports two modes Dependency Declaration and Declare Artifacts Manually. The editing mode only supports the second Declare Artifacts Manually.
Mode parses the inputted text and creates artifacts out of the results of parsing. It supports the multiple input formats written below.
-
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>
-
It allows you to manually set up parameters. It allows you to add only one item per dialog.