BAEL-15988 : package change from org.baeldung to com.baeldung

This commit is contained in:
sampada 2020-02-11 10:54:54 +05:30
parent 93770e684a
commit 0a1ee41825
6 changed files with 8 additions and 9 deletions

View File

@ -1,4 +1,4 @@
package org.baeldung.boot.jsoncomponent;
package com.baeldung.boot.jsoncomponent;
import javafx.scene.paint.Color;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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 {