JAVA-841 Standardize package in spring-security-modules-mvc-boot-2 module

This commit is contained in:
mikr
2020-02-29 16:12:08 +01:00
parent 984a99b7cf
commit ab784af235
31 changed files with 38 additions and 44 deletions
@@ -1,6 +1,5 @@
package org.baeldung.jdbcauthentication.h2;
package com.baeldung.jdbcauthentication.h2;
import org.baeldung.jdbcauthentication.h2.H2JdbcAuthenticationApplication;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
@@ -1,4 +1,4 @@
package org.baeldung.jdbcauthentication.h2.web;
package com.baeldung.jdbcauthentication.h2.web;
import static io.restassured.RestAssured.given;
import static org.hamcrest.CoreMatchers.is;
@@ -1,4 +1,4 @@
package org.baeldung.jdbcauthentication.mysql.web;
package com.baeldung.jdbcauthentication.mysql.web;
import static io.restassured.RestAssured.given;
import static org.hamcrest.CoreMatchers.is;
@@ -1,4 +1,4 @@
package org.baeldung.jdbcauthentication.postgre.web;
package com.baeldung.jdbcauthentication.postgre.web;
import static io.restassured.RestAssured.given;
import static org.hamcrest.CoreMatchers.is;
@@ -1,10 +1,10 @@
package org.baeldung.web;
package com.baeldung.web;
import org.apache.http.client.HttpClient;
import org.apache.http.conn.ssl.SSLConnectionSocketFactory;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.ssl.SSLContextBuilder;
import org.baeldung.ssl.HttpsEnabledApplication;
import com.baeldung.ssl.HttpsEnabledApplication;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Value;
@@ -1,10 +1,10 @@
package org.baeldung.web;
package com.baeldung.web;
import static org.assertj.core.api.Assertions.assertThat;
import java.util.Collections;
import org.baeldung.multipleauthproviders.MultipleAuthProvidersApplication;
import com.baeldung.multipleauthproviders.MultipleAuthProvidersApplication;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
@@ -1,4 +1,4 @@
package org.baeldung.web;
package com.baeldung.web;
import org.junit.Before;
import org.junit.Test;
@@ -15,7 +15,7 @@ import org.springframework.web.context.WebApplicationContext;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.*;
import org.baeldung.multipleentrypoints.MultipleEntryPointsApplication;
import com.baeldung.multipleentrypoints.MultipleEntryPointsApplication;
import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.*;