This is an automated email from the ASF dual-hosted git repository. zehnder pushed a commit to branch debs-remove-spring-webmvc in repository https://gitbox.apache.org/repos/asf/streampipes.git
commit c9898ca0fa2a001711fffe6d1a9efd47c2a6e49f Author: Philipp Zehnder <[email protected]> AuthorDate: Thu Oct 16 13:35:30 2025 +0200 deps: Remove spring-webmvc dependency --- pom.xml | 6 +++ streampipes-data-explorer-export/pom.xml | 63 +++++++++++++++----------------- 2 files changed, 35 insertions(+), 34 deletions(-) diff --git a/pom.xml b/pom.xml index 6d8c1ab585..3f928d637c 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..aa8dcfc7cf 100644 --- a/streampipes-data-explorer-export/pom.xml +++ b/streampipes-data-explorer-export/pom.xml @@ -74,40 +74,35 @@ </exclusions> </dependency> <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> + <groupId>software.amazon.awssdk</groupId> + <artifactId>s3</artifactId> + <version>2.25.14</version> + <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 -->
