[JAVA-958] Standardize packages in spring-batch module
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
package org.baeldung;
|
||||
package com.baeldung;
|
||||
|
||||
import org.baeldung.batch.App;
|
||||
import com.baeldung.batch.App;
|
||||
import org.junit.Test;
|
||||
|
||||
public class SpringContextTest {
|
||||
@@ -1,5 +1,6 @@
|
||||
package org.baeldung.batch;
|
||||
package com.baeldung.batch;
|
||||
|
||||
import com.baeldung.batch.SpringBatchRetryConfig;
|
||||
import org.apache.http.client.methods.CloseableHttpResponse;
|
||||
import org.apache.http.conn.ConnectTimeoutException;
|
||||
import org.apache.http.entity.StringEntity;
|
||||
@@ -1,5 +1,6 @@
|
||||
package org.baeldung.batchscheduler;
|
||||
package com.baeldung.batchscheduler;
|
||||
|
||||
import com.baeldung.batchscheduler.SpringBatchScheduler;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
@@ -1,10 +1,11 @@
|
||||
package org.baeldung.batchtesting;
|
||||
package com.baeldung.batchtesting;
|
||||
|
||||
import static org.hamcrest.Matchers.is;
|
||||
import static org.junit.Assert.assertThat;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import com.baeldung.batchtesting.SpringBatchConfiguration;
|
||||
import org.junit.After;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
@@ -1,12 +1,13 @@
|
||||
package org.baeldung.batchtesting;
|
||||
package com.baeldung.batchtesting;
|
||||
|
||||
import static org.hamcrest.Matchers.is;
|
||||
import static org.junit.Assert.assertThat;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
import org.baeldung.batchtesting.model.Book;
|
||||
import org.baeldung.batchtesting.model.BookRecord;
|
||||
import com.baeldung.batchtesting.SpringBatchConfiguration;
|
||||
import com.baeldung.batchtesting.model.Book;
|
||||
import com.baeldung.batchtesting.model.BookRecord;
|
||||
import org.junit.After;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
@@ -1,6 +1,6 @@
|
||||
package org.baeldung.taskletsvschunks.chunks;
|
||||
package com.baeldung.taskletsvschunks.chunks;
|
||||
|
||||
import org.baeldung.taskletsvschunks.config.ChunksConfig;
|
||||
import com.baeldung.taskletsvschunks.config.ChunksConfig;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
@@ -1,6 +1,6 @@
|
||||
package org.baeldung.taskletsvschunks.tasklets;
|
||||
package com.baeldung.taskletsvschunks.tasklets;
|
||||
|
||||
import org.baeldung.taskletsvschunks.config.TaskletsConfig;
|
||||
import com.baeldung.taskletsvschunks.config.TaskletsConfig;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
Reference in New Issue
Block a user