This is an automated email from the ASF dual-hosted git repository.
fanjia pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/seatunnel.git
The following commit(s) were added to refs/heads/dev by this push:
new a7675d1782 [bug][dist]fix the release packaging exception (#9436)
a7675d1782 is described below
commit a7675d1782d82db5424c4f0db362663cbc1e3ff3
Author: zhangdonghao <[email protected]>
AuthorDate: Thu Jun 19 15:54:47 2025 +0800
[bug][dist]fix the release packaging exception (#9436)
---
seatunnel-dist/pom.xml | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/seatunnel-dist/pom.xml b/seatunnel-dist/pom.xml
index 0df27af1dd..630d72c2de 100644
--- a/seatunnel-dist/pom.xml
+++ b/seatunnel-dist/pom.xml
@@ -738,6 +738,18 @@
<version>${tidb.version}</version>
<scope>provided</scope>
</dependency>
+ <dependency>
+ <groupId>com.facebook.presto</groupId>
+ <artifactId>presto-jdbc</artifactId>
+ <version>${presto.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>io.trino</groupId>
+ <artifactId>trino-jdbc</artifactId>
+ <version>${trino.version}</version>
+ <scope>provided</scope>
+ </dependency>
<!-- jdbc driver end -->
<dependency>
@@ -990,18 +1002,6 @@
<classifier>optional</classifier>
<scope>provided</scope>
</dependency>
- <dependency>
- <groupId>com.facebook.presto</groupId>
- <artifactId>presto-jdbc</artifactId>
- <version>${presto.version}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>io.trino</groupId>
- <artifactId>trino-jdbc</artifactId>
- <version>${trino.version}</version>
- <scope>provided</scope>
- </dependency>
</dependencies>
<build>
<finalName>apache-seatunnel-${project.version}</finalName>