BATCH-818: Add ivy meta data for Spring Build
This commit is contained in:
@@ -1,29 +0,0 @@
|
||||
Bundle-SymbolicName: org.springframework.batch.core
|
||||
Bundle-Version: 2.0.0.CI-SNAPSHOT
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Spring Batch Core
|
||||
Ignored-Existing-Headers:
|
||||
Import-Package,
|
||||
Export-Package
|
||||
Import-Template:
|
||||
com.thoughtworks.xstream.*;version="[1.3,1.4)",
|
||||
org.codehaus.jettison.*;version="[1.0,1.1)",
|
||||
org.aopalliance.*;version="[1.0.0, 2.0.0)",
|
||||
org.apache.commons.lang.*;version="[2.1,3.0)";resolution:=optional,
|
||||
org.apache.commons.logging.*;version="[1.1.0, 2.0.0)",
|
||||
org.springframework.aop.*;version="[2.5.5, 3.0.0)",
|
||||
org.springframework.batch.item.*;version="[2.0.0, 3.0.0)",
|
||||
org.springframework.batch.repeat.*;version="[2.0.0, 3.0.0)",
|
||||
org.springframework.batch.retry.*;version="[2.0.0, 3.0.0)",
|
||||
org.springframework.batch.support.*;version="[2.0.0, 3.0.0)",
|
||||
org.springframework.beans.*;version="[2.5.5, 3.0.0)";resolution:=optional,
|
||||
org.springframework.context.*;version="[2.5.5, 3.0.0)";resolution:=optional,
|
||||
org.springframework.core.*;version="[2.5.5, 3.0.0)";resolution:=optional,
|
||||
org.springframework.dao.*;version="[2.5.5, 3.0.0)";resolution:=optional,
|
||||
org.springframework.jdbc.*;version="[2.5.5, 3.0.0)";resolution:=optional,
|
||||
org.springframework.transaction.*;version="[2.5.5, 3.0.0)";resolution:=optional,
|
||||
org.springframework.util.*;version="[2.5.5, 3.0.0)";resolution:=optional,
|
||||
org.springframework.osgi.*;version="[1.1.0, 2.0.0)";resolution:=optional
|
||||
Unversioned-Imports:
|
||||
javax.sql.*,
|
||||
org.osgi.framework
|
||||
@@ -18,9 +18,9 @@ package org.springframework.batch.core.step.tasklet;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.concurrent.CopyOnWriteArrayList;
|
||||
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
@@ -47,7 +47,7 @@ import org.springframework.util.StringUtils;
|
||||
|
||||
public class AsyncTaskletStepTests {
|
||||
|
||||
private List<String> processed = new ArrayList<String>();
|
||||
private List<String> processed = new CopyOnWriteArrayList<String>();
|
||||
|
||||
private TaskletStep step;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user