You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ri...@apache.org on 2021/12/06 09:06:34 UTC

[incubator-streampipes] branch dev updated: [STREAMPIPES-479] Revert Spring boot version to 2.5.52

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

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


The following commit(s) were added to refs/heads/dev by this push:
     new 6de2025  [STREAMPIPES-479] Revert Spring boot version to 2.5.52
6de2025 is described below

commit 6de2025deb396a045cf408cc61b0924f83f95a37
Author: Dominik Riemer <do...@gmail.com>
AuthorDate: Mon Dec 6 10:06:24 2021 +0100

    [STREAMPIPES-479] Revert Spring boot version to 2.5.52
---
 pom.xml                                                                 | 2 +-
 .../src/main/java/org/apache/streampipes/backend/WebSecurityConfig.java | 2 --
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 359d4c8..8d0f2b2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -103,7 +103,7 @@
         <snappy-java.version>1.1.7.7</snappy-java.version>
         <spark.version>2.1.2</spark.version>
         <spring.version>5.3.13</spring.version>
-        <spring-boot.version>2.6.1</spring-boot.version>
+        <spring-boot.version>2.5.5</spring-boot.version>
         <spring-security.version>5.6.0</spring-security.version>
         <swagger.version>2.1.6</swagger.version>
         <type-parser.version>0.6.0</type-parser.version>
diff --git a/streampipes-backend/src/main/java/org/apache/streampipes/backend/WebSecurityConfig.java b/streampipes-backend/src/main/java/org/apache/streampipes/backend/WebSecurityConfig.java
index ac9c385..e882c8c 100644
--- a/streampipes-backend/src/main/java/org/apache/streampipes/backend/WebSecurityConfig.java
+++ b/streampipes-backend/src/main/java/org/apache/streampipes/backend/WebSecurityConfig.java
@@ -19,7 +19,6 @@
 package org.apache.streampipes.backend;
 
 import org.apache.streampipes.rest.filter.TokenAuthenticationFilter;
-import org.apache.streampipes.user.management.authentication.StreamPipesCredentialsMatcher;
 import org.apache.streampipes.user.management.service.SpUserDetailsService;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.context.annotation.Bean;
@@ -33,7 +32,6 @@ import org.springframework.security.config.annotation.web.configuration.EnableWe
 import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
 import org.springframework.security.config.http.SessionCreationPolicy;
 import org.springframework.security.core.userdetails.UserDetailsService;
-import org.springframework.security.crypto.password.PasswordEncoder;
 import org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter;
 
 @Configuration