BAEL-15988 : package change from org.baeldung to com.baeldung
This commit is contained in:
parent
93770e684a
commit
0a1ee41825
|
@ -1,4 +1,4 @@
|
|||
package org.baeldung.boot.jsoncomponent;
|
||||
package com.baeldung.boot.jsoncomponent;
|
||||
|
||||
import javafx.scene.paint.Color;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package org.baeldung.boot.jsoncomponent;
|
||||
package com.baeldung.boot.jsoncomponent;
|
||||
|
||||
import com.fasterxml.jackson.core.JsonGenerator;
|
||||
import com.fasterxml.jackson.core.JsonParser;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package org.baeldung.boot.jsoncomponent;
|
||||
package com.baeldung.boot.jsoncomponent;
|
||||
|
||||
import com.fasterxml.jackson.core.JsonParser;
|
||||
import com.fasterxml.jackson.core.JsonProcessingException;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package org.baeldung.boot.jsoncomponent;
|
||||
package com.baeldung.boot.jsoncomponent;
|
||||
|
||||
import com.fasterxml.jackson.core.JsonGenerator;
|
||||
import com.fasterxml.jackson.core.JsonProcessingException;
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
package org.baeldung.boot.jsoncomponent;
|
||||
package com.baeldung.boot.jsoncomponent;
|
||||
|
||||
import com.baeldung.boot.jsoncomponent.User;
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
import javafx.scene.paint.Color;
|
||||
|
||||
import org.baeldung.boot.jsoncomponent.User;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
package org.baeldung.boot.jsoncomponent;
|
||||
package com.baeldung.boot.jsoncomponent;
|
||||
|
||||
import com.baeldung.boot.jsoncomponent.User;
|
||||
import com.fasterxml.jackson.core.JsonProcessingException;
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
import javafx.scene.paint.Color;
|
||||
|
@ -11,8 +12,6 @@ import org.springframework.test.context.junit4.SpringRunner;
|
|||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
import org.baeldung.boot.jsoncomponent.User;
|
||||
|
||||
@JsonTest
|
||||
@RunWith(SpringRunner.class)
|
||||
public class UserJsonSerializerIntegrationTest {
|
||||
|
|
Loading…
Reference in New Issue