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

lvyanquan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink-cdc.git


The following commit(s) were added to refs/heads/master by this push:
     new e780a7cbb [FLINK-39760][postgres] Fix missing JTS core dependency of 
PostgreSQL YAML connector (#4467)
e780a7cbb is described below

commit e780a7cbb76acb6108ac9a9cf76e93ac0dec06ff
Author: haruki <[email protected]>
AuthorDate: Fri Jul 10 16:21:04 2026 +0800

    [FLINK-39760][postgres] Fix missing JTS core dependency of PostgreSQL YAML 
connector (#4467)
---
 .../flink-cdc-pipeline-connector-postgres/pom.xml              | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git 
a/flink-cdc-connect/flink-cdc-pipeline-connectors/flink-cdc-pipeline-connector-postgres/pom.xml
 
b/flink-cdc-connect/flink-cdc-pipeline-connectors/flink-cdc-pipeline-connector-postgres/pom.xml
index 0e45ea597..c8236bba2 100644
--- 
a/flink-cdc-connect/flink-cdc-pipeline-connectors/flink-cdc-pipeline-connector-postgres/pom.xml
+++ 
b/flink-cdc-connect/flink-cdc-pipeline-connectors/flink-cdc-pipeline-connector-postgres/pom.xml
@@ -29,6 +29,7 @@ limitations under the License.
     <artifactId>flink-cdc-pipeline-connector-postgres</artifactId>
 
     <properties>
+        <jts.version>1.19.0</jts.version>
     </properties>
 
     <dependencies>
@@ -39,6 +40,12 @@ limitations under the License.
             <version>${project.version}</version>
         </dependency>
 
+        <dependency>
+            <groupId>org.locationtech.jts</groupId>
+            <artifactId>jts-core</artifactId>
+            <version>${jts.version}</version>
+        </dependency>
+
         <dependency>
             <groupId>org.apache.flink</groupId>
             <artifactId>flink-connector-postgres-cdc</artifactId>
@@ -181,6 +188,7 @@ limitations under the License.
                                     <include>com.google.guava:*</include>
                                     <include>org.apache.kafka:*</include>
                                     
<include>org.postgresql:postgresql</include>
+                                    
<include>org.locationtech.jts:jts-core</include>
                                     <include>com.fasterxml.*:*</include>
                                     <!--  Include fixed version 
30.1.1-jre-14.0 of flink shaded guava  -->
                                     
<include>org.apache.flink:flink-shaded-guava</include>
@@ -239,4 +247,4 @@ limitations under the License.
             </plugin>
         </plugins>
     </build>
-</project>
\ No newline at end of file
+</project>

Reply via email to