BATCH-815: add bundlor to build.

This commit is contained in:
dsyer
2008-09-25 09:14:44 +00:00
parent bd27b69cf8
commit 1b400adc36
11 changed files with 201 additions and 232 deletions

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>simple-cli-archetype</name>
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>simple-cli-archetype</name>
<comment>This plugin is an archetype that creates a command line batch sample from
Spring Batch. Once installed you can create the archetype project
using&lt;br/&gt;
@@ -10,36 +10,35 @@ $ mvn archetype:create -DgroupId=com.mycompany -DartifactId=batch \
-DarchetypeArtifactId=spring-batch-cli -DarchetypeVersion=1.0-m3-SNAPSHOT
&lt;/pre&gt;&lt;br/&gt;
Then you should be able to &quot;cd batch; mvn package exec:exec&quot;, and see the
app run.</comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.wst.common.project.facet.core.builder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.devzuz.q.maven.jdt.core.mavenIncrementalBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.springframework.ide.eclipse.core.springbuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.springsource.platform.ide.facet.core.bundlenature</nature>
<nature>org.springframework.ide.eclipse.core.springnature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.devzuz.q.maven.jdt.core.mavenNature</nature>
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
</natures>
</projectDescription>
app run.</comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.wst.common.project.facet.core.builder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.devzuz.q.maven.jdt.core.mavenIncrementalBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.springframework.ide.eclipse.core.springbuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.springframework.ide.eclipse.core.springnature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.devzuz.q.maven.jdt.core.mavenNature</nature>
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
</natures>
</projectDescription>

View File

@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<faceted-project>
<runtime name="SpringSource AP v1.0"/>
<installed facet="com.springsource.platform.bundle" version="1.0"/>
</faceted-project>
<?xml version="1.0" encoding="UTF-8"?>
<faceted-project>
<runtime name="SpringSource AP v1.0"/>
</faceted-project>

View File

@@ -1,5 +1,5 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.batch</groupId>
<artifactId>simple-cli-archetype</artifactId>
@@ -7,7 +7,6 @@
<packaging>jar</packaging>
<name>Commandline</name>
<url>http://www.springframework.org/spring-batch/archetypes/simple-cli-archetype</url>
<description>
<![CDATA[
This project is a minimal command line batch sample from
@@ -15,13 +14,11 @@
see the job run.
]]>
</description>
<properties>
<maven.test.failure.ignore>true</maven.test.failure.ignore>
<spring.framework.version>2.5.5</spring.framework.version>
<bundle.symbolic.name>${pom.groupId}.sample.archetype.cli</bundle.symbolic.name>
<bundlor.version>1.0.0.BUILD-SNAPSHOT</bundlor.version>
</properties>
<profiles>
<profile>
<id>strict</id>
@@ -29,8 +26,34 @@
<maven.test.failure.ignore>false</maven.test.failure.ignore>
</properties>
</profile>
<profile>
<id>manifest</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>com.springsource.bundlor</groupId>
<artifactId>com.springsource.bundlor.maven</artifactId>
<version>${bundlor.version}</version>
<executions>
<execution>
<id>bundlor-manifest</id>
<phase>package</phase>
<goals>
<goal>manifest</goal>
</goals>
<configuration>
<outputFile>${project.basedir}/src/main/resources/META-INF/MANIFEST.MF</outputFile>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>junit</groupId>
@@ -76,7 +99,6 @@
<version>1.5.3</version>
</dependency>
</dependencies>
<build>
<extensions>
<extension>
@@ -95,30 +117,19 @@
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<manifestLocation>target/generated-resources/META-INF</manifestLocation>
<instructions>
<Bundle-SymbolicName>${bundle.symbolic.name}</Bundle-SymbolicName>
<Export-Package>!example,!test.*</Export-Package>
<Import-Package><![CDATA[
org.apache.commons.logging.*;version="[1.1.0, 2.0.0)",
org.springframework.batch.*;version="[2.0.0,3.0.0)",
org.springframework.*;version="[2.5.5, 3.0.0)"
]]></Import-Package>
</instructions>
</configuration>
<groupId>com.springsource.bundlor</groupId>
<artifactId>com.springsource.bundlor.maven</artifactId>
<version>${bundlor.version}</version>
<executions>
<execution>
<id>bundlor-transform</id>
<!-- This isn't necessary, but Q4E barfs without it. -->
<phase>package</phase>
<goals>
<goal>transform</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -149,14 +160,18 @@
</plugin>
</plugins>
</build>
<pluginRepositories>
<pluginRepository>
<id>Codehaus</id>
<url>http://repository.codehaus.org/</url>
</pluginRepository>
<pluginRepository>
<id>com.springsource.repository.bundles.snapshot</id>
<name>SpringSource Enterprise Bundle Repository -
SpringSource Bundle Snapshots</name>
<url>http://repository.springsource.com/maven/bundles/snapshot</url>
</pluginRepository>
</pluginRepositories>
<distributionManagement>
<downloadUrl>http://www.springframework.org/download</downloadUrl>
<site>
@@ -174,5 +189,4 @@
<url>s3://maven.springframework.org/snapshot</url>
</snapshotRepository>
</distributionManagement>
</project>
</project>

View File

@@ -1,28 +0,0 @@
Manifest-Version: 1.0
Import-Library: org.springframework.spring;version="[2.5.4.A,3.0.0)"
Import-Bundle: org.springframework.batch.core;version="[2.0.0,3.0.0)",
org.springframework.batch.infrastructure;version="[2.0.0,3.0.0)"
Created-By: 1.5.0_09 (Sun Microsystems Inc.)
Import-Package: org.apache.commons.logging;version="[1.1.0, 2.0.0)",or
g.springframework.batch.item.support;version="[2.0.0,3.0.0)"
Bnd-LastModified: 1216037156921
Export-Package: example;uses:="org.springframework.batch.item.support,
org.apache.commons.logging";version="2.0.0.CI",test.jdbc.da
tasource;uses:="org.apache.commons.logging,org.springframework.jdbc.c
ore,org.springframework.transaction,org.springframework.beans.factory
.config,org.springframework.jdbc.datasource,org.springframework.core.
io,org.springframework.util,org.springframework.beans.factory,org.spr
ingframework.transaction.support";version="2.0.0.CI"
Bundle-Version: 2.0.0.CI-SNAPSHOT
Ignore-Package: example,test.jdbc.datasource
Bundle-Name: Spring Batch Simple Commandline Archetype
Bundle-Description: This project is a minimal command line batch sampl
e from Spring Batch. Once installed you can use "mvn exec:java"
to see the job run.
Private-Package: example;version="1.1.0.DEV-SNAPSHOT",test.jdbc.dataso
urce;version="1.1.0.DEV-SNAPSHOT"
Originally-Created-By: 1.5.0_09 (Sun Microsystems Inc.)
Bundle-ManifestVersion: 2
Bundle-SymbolicName: org.springframework.batch.sample.archetype.cli
Tool: Bnd-0.0.255

View File

@@ -1,18 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>archetypes-src</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
</buildSpec>
<natures>
</natures>
<linkedResources>
<link>
<name>archetypes-pom.xml</name>
<type>1</type>
<location>SPRING_BATCH/archetypes/pom.xml</location>
</link>
</linkedResources>
</projectDescription>
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>archetypes-src</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
</buildSpec>
<natures>
</natures>
<linkedResources>
<link>
<name>archetypes-pom.xml</name>
<type>1</type>
<locationURI>SPRING_BATCH/archetypes/pom.xml</locationURI>
</link>
</linkedResources>
</projectDescription>

View File

@@ -6,11 +6,6 @@
<project>spring-batch-infrastructure</project>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.wst.common.project.facet.core.builder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
@@ -28,10 +23,8 @@
</buildCommand>
</buildSpec>
<natures>
<nature>com.springsource.platform.ide.facet.core.bundlenature</nature>
<nature>org.springframework.ide.eclipse.core.springnature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.devzuz.q.maven.jdt.core.mavenNature</nature>
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
</natures>
</projectDescription>

View File

@@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<faceted-project>
<runtime name="SpringSource AP v1.0"/>
<installed facet="com.springsource.platform.bundle" version="1.0"/>
</faceted-project>

View File

@@ -130,13 +130,8 @@
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
<groupId>com.springsource.bundlor</groupId>
<artifactId>com.springsource.bundlor.maven</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>

View File

@@ -6,6 +6,8 @@ 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)",

View File

@@ -1,7 +1,8 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-batch-infrastructure</artifactId>
<version>2.0.0.CI-SNAPSHOT </version>
<version>2.0.0.CI-SNAPSHOT </version>
<packaging>jar</packaging>
<name>Infrastructure</name>
<description>
@@ -42,13 +43,8 @@
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
<groupId>com.springsource.bundlor</groupId>
<artifactId>com.springsource.bundlor.maven</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -152,7 +148,10 @@
<scope>provided</scope>
</dependency>
<dependency>
<!-- Force Hibernate to use a particular nodep version of cglib in case of clash with Spring AOP -->
<!--
Force Hibernate to use a particular nodep version of cglib in case
of clash with Spring AOP
-->
<groupId>cglib</groupId>
<artifactId>cglib-nodep</artifactId>
<optional>true</optional>
@@ -213,4 +212,4 @@
</plugin>
</plugins>
</reporting>
</project>
</project>

View File

@@ -1,8 +1,8 @@
Manifest-Version: 1.0
Bundle-Name: Spring Batch Infrastructure
Archiver-Version: Plexus Archiver
Built-By: dsyer
Build-Jdk: 1.5.0_13
Built-By: tsweeney
Created-By: Apache Maven
Import-Package: com.ibatis.sqlmap.client;version="[2.3.0, 3.0.0)";reso
lution:=optional,javax.jms;version="1.1.0";resolution:=optional,javax
@@ -27,90 +27,91 @@ Import-Package: com.ibatis.sqlmap.client;version="[2.3.0, 3.0.0)";reso
ramework.dao;version="[2.5.5, 3.0.0)";resolution:=optional,org.spring
framework.jdbc;version="[2.5.5, 3.0.0)";resolution:=optional,org.spri
ngframework.jdbc.core;version="[2.5.5, 3.0.0)";resolution:=optional,o
rg.springframework.jdbc.support;version="[2.5.5, 3.0.0)";resolution:=
optional,org.springframework.jdbc.support.incrementer;version="[2.5.5
, 3.0.0)";resolution:=optional,org.springframework.jms;version="[2.5.
5, 3.0.0)";resolution:=optional,org.springframework.jms.core;version=
"[2.5.5, 3.0.0)";resolution:=optional,org.springframework.orm.hiberna
te3;version="[2.5.5, 3.0.0)";resolution:=optional,org.springframework
.orm.ibatis;version="[2.5.5, 3.0.0)";resolution:=optional,org.springf
ramework.orm.jpa;version="[2.5.5, 3.0.0)";resolution:=optional,org.sp
ringframework.oxm;version="[1.5.0, 2.0.0)";resolution:=optional,org.s
pringframework.transaction;version="[2.5.5, 3.0.0)";resolution:=optio
nal,org.springframework.transaction.support;version="[2.5.5, 3.0.0)";
resolution:=optional,org.springframework.util;version="[2.5.5, 3.0.0)
";resolution:=optional,org.springframework.validation;version="[2.5.5
, 3.0.0)";resolution:=optional,org.springframework.xml.transform;vers
ion="[1.5.0, 2.0.0)";resolution:=optional
rg.springframework.jdbc.core.namedparam;version="[2.5.5, 3.0.0)";reso
lution:=optional,org.springframework.jdbc.core.simple;version="[2.5.5
, 3.0.0)";resolution:=optional,org.springframework.jdbc.support;versi
on="[2.5.5, 3.0.0)";resolution:=optional,org.springframework.jdbc.sup
port.incrementer;version="[2.5.5, 3.0.0)";resolution:=optional,org.sp
ringframework.jms;version="[2.5.5, 3.0.0)";resolution:=optional,org.s
pringframework.jms.core;version="[2.5.5, 3.0.0)";resolution:=optional
,org.springframework.orm.hibernate3;version="[2.5.5, 3.0.0)";resoluti
on:=optional,org.springframework.orm.ibatis;version="[2.5.5, 3.0.0)";
resolution:=optional,org.springframework.orm.jpa;version="[2.5.5, 3.0
.0)";resolution:=optional,org.springframework.oxm;version="[1.5.0, 2.
0.0)";resolution:=optional,org.springframework.transaction;version="[
2.5.5, 3.0.0)";resolution:=optional,org.springframework.transaction.s
upport;version="[2.5.5, 3.0.0)";resolution:=optional,org.springframew
ork.util;version="[2.5.5, 3.0.0)";resolution:=optional,org.springfram
ework.validation;version="[2.5.5, 3.0.0)";resolution:=optional,org.sp
ringframework.xml.transform;version="[1.5.0, 2.0.0)";resolution:=opti
onal
Bundle-ManifestVersion: 2
Bundle-SymbolicName: org.springframework.batch.infrastructure
Export-Package: org.springframework.batch.item;version="2.0.0.CI-SNAPS
HOT",org.springframework.batch.item.adapter;version="2.0.0.CI-SNAPSHO
T";uses:="org.springframework.batch.item",org.springframework.batch.i
tem.database;version="2.0.0.CI-SNAPSHOT";uses:="com.ibatis.sqlmap.cli
ent,javax.persistence,javax.sql,org.hibernate,org.springframework.bat
ch.item,org.springframework.dao,org.springframework.jdbc.core,org.spr
ingframework.jdbc.support,org.springframework.orm.hibernate3",org.spr
ingframework.batch.item.database.support;version="2.0.0.CI-SNAPSHOT";
uses:="com.ibatis.sqlmap.client,javax.sql,org.springframework.batch.i
tem,org.springframework.batch.item.database,org.springframework.jdbc.
core,org.springframework.jdbc.support.incrementer,org.springframework
.orm.ibatis",org.springframework.batch.item.file;version="2.0.0.CI-SN
APSHOT";uses:="org.springframework.batch.item,org.springframework.bat
ch.item.file.mapping,org.springframework.batch.item.file.separator,or
g.springframework.batch.item.file.transform,org.springframework.core.
io",org.springframework.batch.item.file.mapping;version="2.0.0.CI-SNA
PSHOT";uses:="org.springframework.beans.factory,org.springframework.v
alidation",org.springframework.batch.item.file.separator;version="2.0
.0.CI-SNAPSHOT",org.springframework.batch.item.file.transform;version
="2.0.0.CI-SNAPSHOT";uses:="org.springframework.batch.item.file.mappi
ng",org.springframework.batch.item.jms;version="2.0.0.CI-SNAPSHOT";us
es:="javax.jms,org.springframework.jms.core",org.springframework.batc
h.item.support;version="2.0.0.CI-SNAPSHOT";uses:="org.springframework
.batch.item,org.springframework.batch.item.file.mapping",org.springfr
amework.batch.item.transform;version="2.0.0.CI-SNAPSHOT",org.springfr
amework.batch.item.util;version="2.0.0.CI-SNAPSHOT",org.springframewo
rk.batch.item.validator;version="2.0.0.CI-SNAPSHOT";uses:="org.spring
framework.validation",org.springframework.batch.item.xml;version="2.0
.0.CI-SNAPSHOT";uses:="javax.xml.stream,org.springframework.batch.ite
m,org.springframework.core.io",org.springframework.batch.item.xml.oxm
;version="2.0.0.CI-SNAPSHOT";uses:="javax.xml.stream,org.springframew
ork.oxm",org.springframework.batch.item.xml.stax;version="2.0.0.CI-SN
APSHOT";uses:="javax.xml.namespace,javax.xml.stream,javax.xml.stream.
events",org.springframework.batch.repeat;version="2.0.0.CI-SNAPSHOT",
org.springframework.batch.repeat.callback;version="2.0.0.CI-SNAPSHOT"
;uses:="org.springframework.batch.item,org.springframework.batch.repe
at",org.springframework.batch.repeat.context;version="2.0.0.CI-SNAPSH
OT";uses:="org.springframework.batch.repeat",org.springframework.batc
h.repeat.exception;version="2.0.0.CI-SNAPSHOT";uses:="org.springframe
work.batch.repeat,org.springframework.batch.support",org.springframew
ork.batch.repeat.interceptor;version="2.0.0.CI-SNAPSHOT";uses:="org.a
opalliance.intercept,org.springframework.batch.repeat",org.springfram
ework.batch.repeat.listener;version="2.0.0.CI-SNAPSHOT";uses:="org.sp
ringframework.batch.repeat",org.springframework.batch.repeat.policy;v
ersion="2.0.0.CI-SNAPSHOT";uses:="org.springframework.batch.repeat,or
g.springframework.batch.repeat.context",org.springframework.batch.rep
eat.support;version="2.0.0.CI-SNAPSHOT";uses:="org.springframework.ba
tch.repeat,org.springframework.batch.repeat.exception,org.springframe
work.core.task",org.springframework.batch.retry;version="2.0.0.CI-SNA
PSHOT",org.springframework.batch.retry.backoff;version="2.0.0.CI-SNAP
SHOT";uses:="org.springframework.batch.retry",org.springframework.bat
ch.retry.callback;version="2.0.0.CI-SNAPSHOT";uses:="org.springframew
ork.batch.retry",org.springframework.batch.retry.context;version="2.0
.0.CI-SNAPSHOT";uses:="org.springframework.batch.retry",org.springfra
mework.batch.retry.interceptor;version="2.0.0.CI-SNAPSHOT";uses:="org
.aopalliance.intercept,org.springframework.batch.item,org.springframe
work.batch.retry",org.springframework.batch.retry.listener;version="2
.0.0.CI-SNAPSHOT";uses:="org.springframework.batch.retry",org.springf
ramework.batch.retry.policy;version="2.0.0.CI-SNAPSHOT";uses:="org.sp
ringframework.batch.retry,org.springframework.batch.retry.callback,or
g.springframework.batch.support",org.springframework.batch.retry.supp
ort;version="2.0.0.CI-SNAPSHOT";uses:="org.springframework.batch.retr
y,org.springframework.batch.retry.backoff",org.springframework.batch.
support;version="2.0.0.CI-SNAPSHOT";uses:="org.springframework.beans"
T",org.springframework.batch.item.database;version="2.0.0.CI-SNAPSHOT
";uses:="com.ibatis.sqlmap.client,javax.persistence,javax.sql,org.hib
ernate,org.springframework.batch.item,org.springframework.batch.item.
database.support,org.springframework.dao,org.springframework.jdbc.cor
e,org.springframework.jdbc.core.simple,org.springframework.jdbc.suppo
rt,org.springframework.orm.hibernate3",org.springframework.batch.item
.database.support;version="2.0.0.CI-SNAPSHOT";uses:="com.ibatis.sqlma
p.client,javax.sql,org.springframework.batch.item,org.springframework
.batch.item.database,org.springframework.jdbc.core,org.springframewor
k.jdbc.support.incrementer,org.springframework.orm.ibatis",org.spring
framework.batch.item.file;version="2.0.0.CI-SNAPSHOT";uses:="org.spri
ngframework.batch.item,org.springframework.batch.item.file.mapping,or
g.springframework.batch.item.file.separator,org.springframework.batch
.item.file.transform,org.springframework.batch.item.util,org.springfr
amework.core.io",org.springframework.batch.item.file.mapping;version=
"2.0.0.CI-SNAPSHOT";uses:="org.springframework.beans.factory,org.spri
ngframework.validation",org.springframework.batch.item.file.separator
;version="2.0.0.CI-SNAPSHOT",org.springframework.batch.item.file.tran
sform;version="2.0.0.CI-SNAPSHOT";uses:="org.springframework.batch.it
em.file.mapping",org.springframework.batch.item.jms;version="2.0.0.CI
-SNAPSHOT";uses:="org.springframework.jms.core",org.springframework.b
atch.item.support;version="2.0.0.CI-SNAPSHOT";uses:="org.springframew
ork.batch.item,org.springframework.batch.item.file.mapping",org.sprin
gframework.batch.item.util;version="2.0.0.CI-SNAPSHOT",org.springfram
ework.batch.item.validator;version="2.0.0.CI-SNAPSHOT";uses:="org.spr
ingframework.validation",org.springframework.batch.item.xml;version="
2.0.0.CI-SNAPSHOT";uses:="javax.xml.stream,org.springframework.batch.
item,org.springframework.core.io,org.springframework.oxm",org.springf
ramework.batch.item.xml.oxm;version="2.0.0.CI-SNAPSHOT";uses:="javax.
xml.stream,org.springframework.oxm",org.springframework.batch.item.xm
l.stax;version="2.0.0.CI-SNAPSHOT";uses:="javax.xml.namespace,javax.x
ml.stream,javax.xml.stream.events",org.springframework.batch.repeat;v
ersion="2.0.0.CI-SNAPSHOT",org.springframework.batch.repeat.callback;
version="2.0.0.CI-SNAPSHOT";uses:="org.springframework.batch.repeat",
org.springframework.batch.repeat.context;version="2.0.0.CI-SNAPSHOT";
uses:="org.springframework.batch.repeat",org.springframework.batch.re
peat.exception;version="2.0.0.CI-SNAPSHOT";uses:="org.springframework
.batch.repeat,org.springframework.batch.support",org.springframework.
batch.repeat.interceptor;version="2.0.0.CI-SNAPSHOT";uses:="org.aopal
liance.intercept,org.springframework.batch.repeat",org.springframewor
k.batch.repeat.listener;version="2.0.0.CI-SNAPSHOT";uses:="org.spring
framework.batch.repeat",org.springframework.batch.repeat.policy;versi
on="2.0.0.CI-SNAPSHOT";uses:="org.springframework.batch.repeat,org.sp
ringframework.batch.repeat.context",org.springframework.batch.repeat.
support;version="2.0.0.CI-SNAPSHOT";uses:="org.springframework.batch.
repeat,org.springframework.batch.repeat.exception,org.springframework
.core.task",org.springframework.batch.retry;version="2.0.0.CI-SNAPSHO
T",org.springframework.batch.retry.backoff;version="2.0.0.CI-SNAPSHOT
";uses:="org.springframework.batch.retry",org.springframework.batch.r
etry.context;version="2.0.0.CI-SNAPSHOT";uses:="org.springframework.b
atch.retry",org.springframework.batch.retry.interceptor;version="2.0.
0.CI-SNAPSHOT";uses:="org.aopalliance.intercept,org.springframework.b
atch.retry",org.springframework.batch.retry.listener;version="2.0.0.C
I-SNAPSHOT";uses:="org.springframework.batch.retry",org.springframewo
rk.batch.retry.policy;version="2.0.0.CI-SNAPSHOT";uses:="org.springfr
amework.batch.retry,org.springframework.batch.support",org.springfram
ework.batch.retry.support;version="2.0.0.CI-SNAPSHOT";uses:="org.spri
ngframework.batch.retry,org.springframework.batch.retry.backoff,org.s
pringframework.batch.retry.policy,org.springframework.batch.support",
org.springframework.batch.support;version="2.0.0.CI-SNAPSHOT";uses:="
javax.sql,org.springframework.beans,org.springframework.jdbc.support"
,org.springframework.batch.support.transaction;version="2.0.0.CI-SNAP
SHOT";uses:="org.aopalliance.intercept,org.springframework.transactio
n,org.springframework.transaction.support"
Bundle-Version: 2.0.0.CI-SNAPSHOT