Skip to content

Commit

Permalink
[Improve][CDC]change driver scope to provider (apache#5002)
Browse files Browse the repository at this point in the history
  • Loading branch information
liugddx authored and liunaijie committed Jul 13, 2023
1 parent 8fe6bde commit bbb0da1
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
11 changes: 11 additions & 0 deletions seatunnel-connectors-v2/connector-cdc/connector-cdc-mysql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.seatunnel</groupId>
<artifactId>connector-jdbc</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.apache.seatunnel</groupId>
<artifactId>connector-cdc-base</artifactId>
Expand Down Expand Up @@ -87,6 +94,10 @@
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
</dependencies>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,13 @@
<scope>compile</scope>
</dependency>

<dependency>
<groupId>org.apache.seatunnel</groupId>
<artifactId>connector-jdbc</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

Expand All @@ -70,6 +77,11 @@
<artifactId>connector-jdbc</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
</dependency>
</dependencies>

</project>

0 comments on commit bbb0da1

Please sign in to comment.