Page 1 of 2 12 LastLast
Results 1 to 10 of 13

Thread: Spring Batch 2.1.0.RELEASE is now available

  1. #1
    Join Date
    Jun 2005
    Posts
    4,231

    Default Spring Batch 2.1.0.RELEASE is now available

    Spring Batch 2.1.0.RELEASE is now available. See the Spring Batch downloads page for more information (http://static.springframework.org/sp...downloads.html) - there is the usual .zip download and also Maven artifacts in S3 (in SpringSource and Maven Central flavours). The Maven Central artifcats should by synchronized in a few hours.

    There are a couple of bug fixes, mainly to do with database readers, and some tweaks to the documentation.

    Thank you to all the people who have been tracking the milestones and providing feedback. The release notes are on the website (http://static.springframework.org/sp...2.1.0.RC1.html) and in JIRA.

  2. #2

    Default

    thumbs up for the release!

    Note that the web site is still displaying 2.1.0-CI-SNAPSHOT
    Last edited by snicoll; Feb 7th, 2010 at 02:28 AM.

  3. #3

    Default

    Dave,

    Have you published the source artifact on the maven repository? If so, which one?

    Thx,
    S.

  4. #4
    Join Date
    Jun 2005
    Posts
    4,231

    Default

    Source jars should be there (wherever you found the binaries - at least if it was deployed by us).

  5. #5

    Default

    can you give me a repository location please?

  6. #6
    Join Date
    Jun 2005
    Posts
    4,231

    Default

    I just use the default (http://repo1.maven.org/maven2). Maybe you have a mirror or a proxy set up that hides it?

  7. #7

    Default

    Quote Originally Posted by Dave Syer View Post
    I just use the default (http://repo1.maven.org/maven2). Maybe you have a mirror or a proxy set up that hides it?
    There's no 2.1.0.RELEASE in there
    http://repo1.maven.org/maven2/org/sp.../spring-batch/

  8. #8
    Join Date
    Jun 2005
    Posts
    4,231

    Default

    There is no artifact called "spring-batch" in Maven Central: it's just the JAR files, "spring-batch-infrastructure", "spring-batch-core" and "spring-batch-test".

  9. #9
    Join Date
    Mar 2010
    Location
    PARIS
    Posts
    10

    Cool

    Miss up the javadoc associate :
    15/03/10 12:07:00 CET: Can't download javadoc for artifact org.springframework.batch:spring-batch-core:2.1.0.RELEASE
    15/03/10 12:07:05 CET: Can't download javadoc for artifact org.springframework.batch:spring-batch-infrastructure:2.1.0.RELEASE
    15/03/10 12:08:20 CET: Can't download javadoc for artifact org.springframework.batch:spring-batch-test:2.1.0.RELEASE


    I notice the correction of there is no more a doublon at the end of the output of XML file
    I am using org.springframework.batch.item.xml.StaxEventItemWr iter

    here is my spring config

    <!-- ================================================== ===== -->
    <!-- 7) XML WRITER : OUTPUT -->
    <!-- ================================================== ===== -->
    <bean id="xmlFileWriter" class="org.springframework.batch.item.xml.StaxEven tItemWriter">
    <property name="resource" value="file:./output/members.xml" />
    <property name="rootTagName" value="members" />
    <property name="marshaller" ref="customMembersMarshaller" />
    <property name="overwriteOutput" value="true" />
    </bean>
    <bean id="customMembersMarshaller" class="org.springframework.oxm.xstream.XStreamMars haller">

    <property name="useAttributeForTypes">
    <list>
    <value>com.batch.model.Check</value>
    </list>
    </property>
    <property name="aliases">
    <util:map id="aliases">
    <entry key="Check" value="com.batch.model.Check"/>
    <entry key="Ledger" value="com.batch.model.Ledger"/>
    <entry key="receiptDate" value="java.util.Date" />
    </util:map>
    </property>
    </bean>

  10. #10
    Join Date
    Mar 2010
    Posts
    1

    Default

    Quote Originally Posted by Dave Syer View Post
    Spring Batch 2.1.0.RELEASE is now available. See the Spring Batch downloads page for more information (http://static.springframework.org/sp...downloads.html) - there is the usual .zip download ....
    Have you stopped making a zip download available with dependencies? Version 2.0.0.RELEASE was the last version to offer this.

    Cheers,
    Christian.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •