JAVA-841 Standardize package in spring-security-modules-mvc-boot-2 module
This commit is contained in:
+1
-2
@@ -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
-1
@@ -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
-1
@@ -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
-1
@@ -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;
|
||||
+2
-2
@@ -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;
|
||||
+2
-2
@@ -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;
|
||||
+2
-2
@@ -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.*;
|
||||
|
||||
Reference in New Issue
Block a user