Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CB-4080. Add dameng driver #2188

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<plugin>
<!-- Resource mappings -->
<extension point="org.jkiss.dbeaver.resources">
<resource name="drivers/dameng"/>
<resource name="drivers/db2"/>
<resource name="drivers/db2-jt400"/>
<resource name="drivers/mysql/mysql8"/>
Expand Down Expand Up @@ -29,6 +30,7 @@
<bundle id="drivers.postgresql" label="PostgreSQL drivers"/>
<bundle id="drivers.clickhouse" label="Clickhouse (legacy) drivers"/>
<bundle id="drivers.clickhouse_com" label="Clickhouse drivers"/>
<bundle id="drivers.dameng" label="Dameng drivers"/>
<bundle id="drivers.derby" label="Derby drivers"/>
<bundle id="drivers.firebird" label="Firebird drivers"/>
<bundle id="drivers.h2" label="H2 drivers"/>
Expand All @@ -40,6 +42,7 @@

<!-- Enabled drivers -->
<extension point="io.cloudbeaver.driver">
<driver id="dameng:dameng"/>
<driver id="db2:db2"/>
<driver id="db2_i:db2_iseries"/>
<driver id="mysql:mysql8"/>
Expand Down
25 changes: 25 additions & 0 deletions server/drivers/dameng/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>drivers.dameng</artifactId>
<version>1.0.0</version>
<parent>
<groupId>io.cloudbeaver</groupId>
<artifactId>drivers</artifactId>
<version>1.0.0</version>
<relativePath>../</relativePath>
</parent>

<properties>
<deps.output.dir>dameng</deps.output.dir>
</properties>

<dependencies>
<dependency>
<groupId>com.dameng</groupId>
<artifactId>DmJdbcDriver18</artifactId>
<version>8.1.2.192</version>
</dependency>
</dependencies>

</project>
1 change: 1 addition & 0 deletions server/drivers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<modules>
<module>clickhouse</module>
<module>clickhouse_com</module>
<module>dameng</module>
<module>db2</module>
<module>db2-jt400</module>
<module>derby</module>
Expand Down
Loading