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

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


The following commit(s) were added to refs/heads/dev by this push:
     new 57d91c0eb5 deps: Remove spring-webmvc dependency (#3842)
57d91c0eb5 is described below

commit 57d91c0eb5f905676dca099104cfaa5e14db04a7
Author: Philipp Zehnder <[email protected]>
AuthorDate: Thu Oct 16 15:04:22 2025 +0200

    deps: Remove spring-webmvc dependency (#3842)
---
 pom.xml                                  |  6 ++++
 streampipes-data-explorer-export/pom.xml | 60 +++++++++++++++-----------------
 2 files changed, 35 insertions(+), 31 deletions(-)

diff --git a/pom.xml b/pom.xml
index f466a986d6..e4f5370c6e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -124,6 +124,7 @@
         <rdf4j.version>3.7.7</rdf4j.version>
         <rendersnake.version>1.9.0</rendersnake.version>
         <rocketmq.version>5.0.2</rocketmq.version>
+        <s3.version>2.25.14</s3.version>
         <siddhi.version>5.1.27</siddhi.version>
         <simple-java-mail.version>8.10.0</simple-java-mail.version>
         <slack-api.version>1.4.0</slack-api.version>
@@ -449,6 +450,11 @@
                 <artifactId>flink-streaming-java_2.11</artifactId>
                 <version>${flink.version}</version>
             </dependency>
+            <dependency>
+                <groupId>software.amazon.awssdk</groupId>
+                <artifactId>s3</artifactId>
+                <version>${s3.version}</version>
+            </dependency>
             <dependency>
                 <groupId>org.apache.hadoop</groupId>
                 <artifactId>hadoop-common</artifactId>
diff --git a/streampipes-data-explorer-export/pom.xml 
b/streampipes-data-explorer-export/pom.xml
index 303d34ac8c..6a87a9d8aa 100644
--- a/streampipes-data-explorer-export/pom.xml
+++ b/streampipes-data-explorer-export/pom.xml
@@ -76,38 +76,36 @@
         <dependency>
             <groupId>org.springframework</groupId>
             <artifactId>spring-webmvc</artifactId>
-            <version>5.3.32</version> 
         </dependency>
-            <dependency>
-        <groupId>software.amazon.awssdk</groupId>
-        <artifactId>s3</artifactId>
-        <version>2.25.14</version> <!-- Use latest, 2.25.14--> 
-       <exclusions>
-        <exclusion>
-            <groupId>io.netty</groupId>
-            <artifactId>netty-transport-native-unix-common</artifactId>
-        </exclusion>
-        <exclusion>
-            <groupId>io.netty</groupId>
-            <artifactId>netty-codec-http</artifactId>
-        </exclusion>
-        <exclusion>
-            <groupId>io.netty</groupId>
-            <artifactId>netty-transport</artifactId>
-        </exclusion>
-        <exclusion>
-            <groupId>io.netty</groupId>
-            <artifactId>netty-resolver</artifactId>
-        </exclusion>
-        <exclusion>
-            <groupId>io.netty</groupId>
-            <artifactId>netty-handler</artifactId>
-        </exclusion>
-        <exclusion>
-            <groupId>io.netty</groupId>
-            <artifactId>netty-transport-classes-epoll</artifactId> <!-- 
Exclude this one -->
-        </exclusion>
-    </exclusions>
+        <dependency>
+          <groupId>software.amazon.awssdk</groupId>
+          <artifactId>s3</artifactId>
+           <exclusions>
+            <exclusion>
+                <groupId>io.netty</groupId>
+                <artifactId>netty-transport-native-unix-common</artifactId>
+            </exclusion>
+            <exclusion>
+                <groupId>io.netty</groupId>
+                <artifactId>netty-codec-http</artifactId>
+            </exclusion>
+            <exclusion>
+                <groupId>io.netty</groupId>
+                <artifactId>netty-transport</artifactId>
+            </exclusion>
+            <exclusion>
+                <groupId>io.netty</groupId>
+                <artifactId>netty-resolver</artifactId>
+            </exclusion>
+            <exclusion>
+                <groupId>io.netty</groupId>
+                <artifactId>netty-handler</artifactId>
+            </exclusion>
+            <exclusion>
+                <groupId>io.netty</groupId>
+                <artifactId>netty-transport-classes-epoll</artifactId> <!-- 
Exclude this one -->
+            </exclusion>
+        </exclusions>
     </dependency>
 
         <!-- Test dependencies -->

Reply via email to