You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by zi...@apache.org on 2022/07/22 01:49:25 UTC

[dolphinscheduler] branch dev updated: add oracle dependency (#11095)

This is an automated email from the ASF dual-hosted git repository.

zihaoxiang pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 5b429d29b8 add oracle dependency (#11095)
5b429d29b8 is described below

commit 5b429d29b88de4064cb2e87082047f8337da94a2
Author: xiangzihao <46...@qq.com>
AuthorDate: Fri Jul 22 09:49:20 2022 +0800

    add oracle dependency (#11095)
---
 docs/configs/docsdev.js                                          | 2 +-
 dolphinscheduler-bom/pom.xml                                     | 9 +++++++++
 .../dolphinscheduler-datasource-oracle/pom.xml                   | 5 +++++
 3 files changed, 15 insertions(+), 1 deletion(-)

diff --git a/docs/configs/docsdev.js b/docs/configs/docsdev.js
index b688843812..2b0128ec53 100644
--- a/docs/configs/docsdev.js
+++ b/docs/configs/docsdev.js
@@ -822,7 +822,7 @@ export default {
                     },
                     {
                         title: '数据源设置',
-                        link: '/zh-cn/docs/dev/user_doc/guide/howto/general-setting.html',
+                        link: '/zh-cn/docs/dev/user_doc/guide/howto/datasource-setting.html',
                     },
                     {
                         title: '其他',
diff --git a/dolphinscheduler-bom/pom.xml b/dolphinscheduler-bom/pom.xml
index 1d3e6be46c..588c79b34d 100644
--- a/dolphinscheduler-bom/pom.xml
+++ b/dolphinscheduler-bom/pom.xml
@@ -57,6 +57,7 @@
         <cron-utils.version>9.1.3</cron-utils.version>
         <h2.version>1.4.200</h2.version>
         <mysql-connector.version>8.0.16</mysql-connector.version>
+        <oracle-jdbc.version>21.5.0.0</oracle-jdbc.version>
         <slf4j-api.version>1.7.5</slf4j-api.version>
         <slf4j-log4j12.version>1.7.5</slf4j-log4j12.version>
         <poi.version>4.1.2</poi.version>
@@ -337,6 +338,14 @@
                 <version>${mysql-connector.version}</version>
                 <scope>test</scope>
             </dependency>
+
+            <dependency>
+                <groupId>com.oracle.database.jdbc</groupId>
+                <artifactId>ojdbc8</artifactId>
+                <version>${oracle-jdbc.version}</version>
+                <scope>test</scope>
+            </dependency>
+
             <dependency>
                 <groupId>com.h2database</groupId>
                 <artifactId>h2</artifactId>
diff --git a/dolphinscheduler-datasource-plugin/dolphinscheduler-datasource-oracle/pom.xml b/dolphinscheduler-datasource-plugin/dolphinscheduler-datasource-oracle/pom.xml
index 9eb15a2f62..7ffa17f73d 100644
--- a/dolphinscheduler-datasource-plugin/dolphinscheduler-datasource-oracle/pom.xml
+++ b/dolphinscheduler-datasource-plugin/dolphinscheduler-datasource-oracle/pom.xml
@@ -43,6 +43,11 @@
             <version>${project.version}</version>
         </dependency>
 
+        <dependency>
+            <groupId>com.oracle.database.jdbc</groupId>
+            <artifactId>ojdbc8</artifactId>
+        </dependency>
+
         <dependency>
             <groupId>org.mockito</groupId>
             <artifactId>mockito-core</artifactId>