Getting site ready for 2.1.3. Includes config for dependency reports that might speed it up.
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-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>
|
||||
<groupId>org.springframework.batch</groupId>
|
||||
<artifactId>spring-batch-simple-cli</artifactId>
|
||||
@@ -8,14 +9,15 @@
|
||||
<name>Commandline</name>
|
||||
<url>http://www.springframework.org/spring-batch/archetypes/simple-cli-archetype</url>
|
||||
<description>This project is a minimal command line batch sample from
|
||||
Spring Batch. Once installed you can use "mvn exec:java" to
|
||||
see the job run; or if you ship the lib directory you can put
|
||||
the project jar on the classpath and run the
|
||||
CommandLineJobRunner directly or with "java -jar".</description>
|
||||
Spring Batch. Once installed you can use "mvn exec:java" to
|
||||
see the job run; or if you ship the lib directory you can put
|
||||
the project jar on the classpath and run the
|
||||
CommandLineJobRunner directly or with "java -jar launch-context.xml job1".</description>
|
||||
<properties>
|
||||
<maven.test.failure.ignore>true</maven.test.failure.ignore>
|
||||
<spring.framework.version>2.5.6</spring.framework.version>
|
||||
<spring.batch.version>2.1.2.RELEASE</spring.batch.version>
|
||||
<dependency.locations.enabled>false</dependency.locations.enabled>
|
||||
</properties>
|
||||
<profiles>
|
||||
<profile>
|
||||
@@ -37,6 +39,26 @@
|
||||
</snapshotRepository>
|
||||
</distributionManagement>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>bootstrap</id>
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<id>Codehaus</id>
|
||||
<url>http://repository.codehaus.org/</url>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
</pluginRepository>
|
||||
<pluginRepository>
|
||||
<id>com.springsource.repository.bundles.release</id>
|
||||
<name> SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</name>
|
||||
<url>http://repository.springsource.com/maven/bundles/release</url>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
</profile>
|
||||
</profiles>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
@@ -51,6 +73,16 @@
|
||||
<version>${spring.framework.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-context</artifactId>
|
||||
<version>${spring.framework.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-aop</artifactId>
|
||||
<version>${spring.framework.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-jdbc</artifactId>
|
||||
@@ -212,24 +244,6 @@
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<repositories />
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<id>Codehaus</id>
|
||||
<url>http://repository.codehaus.org/</url>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
</pluginRepository>
|
||||
<pluginRepository>
|
||||
<id>com.springsource.repository.bundles.release</id>
|
||||
<name> SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</name>
|
||||
<url>http://repository.springsource.com/maven/bundles/release</url>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
<distributionManagement>
|
||||
<downloadUrl>http://www.springframework.org/download</downloadUrl>
|
||||
<site>
|
||||
@@ -238,14 +252,12 @@
|
||||
</site>
|
||||
<repository>
|
||||
<id>spring-release</id>
|
||||
<name> Spring Release Repository
|
||||
</name>
|
||||
<name>Spring Release Repository</name>
|
||||
<url>file:///${user.dir}/target/staging/release</url>
|
||||
</repository>
|
||||
<snapshotRepository>
|
||||
<id>spring-snapshot</id>
|
||||
<name> Spring Snapshot Repository
|
||||
</name>
|
||||
<name>Spring Snapshot Repository</name>
|
||||
<url>file:///${user.dir}/target/staging/snapshot</url>
|
||||
</snapshotRepository>
|
||||
</distributionManagement>
|
||||
|
||||
19
pom.xml
19
pom.xml
@@ -45,6 +45,9 @@
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
</license>
|
||||
</licenses>
|
||||
<properties>
|
||||
<dependency.locations.enabled>false</dependency.locations.enabled>
|
||||
</properties>
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>all</id>
|
||||
@@ -340,22 +343,6 @@
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>snapshots</id>
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<id>apache-snapshots</id>
|
||||
<url>http://people.apache.org/maven-snapshot-repository</url>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>apache-snapshot</id>
|
||||
<name>Apache Foundation Snapshot Repository</name>
|
||||
<url>http://people.apache.org/maven-snapshot-repository</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>manifest</id>
|
||||
<activation>
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
<spring.framework.version>2.5.6</spring.framework.version>
|
||||
<junit.version>4.4</junit.version>
|
||||
<bundlor.version>1.0.0.RELEASE</bundlor.version>
|
||||
<dependency.locations.enabled>false</dependency.locations.enabled>
|
||||
</properties>
|
||||
<profiles>
|
||||
<profile>
|
||||
@@ -104,20 +105,36 @@
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>snapshots</id>
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<id>apache-snapshots</id>
|
||||
<url>http://people.apache.org/maven-snapshot-repository/</url>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
<id>bootstrap</id>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>objectstyle</id>
|
||||
<name>ObjectStyle.org Repository</name>
|
||||
<url>http://objectstyle.org/maven2/</url>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>apache-snapshot</id>
|
||||
<name>Apache Foundation Snapshot Repository</name>
|
||||
<url>http://people.apache.org/maven-snapshot-repository/</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<id>apache-snapshots</id>
|
||||
<url>http://people.apache.org/maven-snapshot-repository/</url>
|
||||
</pluginRepository>
|
||||
<pluginRepository>
|
||||
<id>com.springsource.repository.bundles.release</id>
|
||||
<name>SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</name>
|
||||
<url>http://repository.springsource.com/maven/bundles/release/</url>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
</profile>
|
||||
</profiles>
|
||||
<build>
|
||||
@@ -512,11 +529,6 @@
|
||||
<artifactId>spring-core</artifactId>
|
||||
<version>${spring.framework.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-expression</artifactId>
|
||||
<version>${spring.framework.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-jdbc</artifactId>
|
||||
@@ -584,24 +596,4 @@
|
||||
<url>s3://maven.springframework.org/snapshot</url>
|
||||
</snapshotRepository>
|
||||
</distributionManagement>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>objectstyle</id>
|
||||
<name>ObjectStyle.org Repository</name>
|
||||
<url>http://objectstyle.org/maven2/</url>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
</repositories>
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<id>com.springsource.repository.bundles.release</id>
|
||||
<name>SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</name>
|
||||
<url>http://repository.springsource.com/maven/bundles/release/</url>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
</project>
|
||||
|
||||
@@ -17,7 +17,24 @@ $ mvn install
|
||||
or the goal of your choice (compile, test, etc.). This builds the
|
||||
artifact (e.g. jar file) from the project in the current directory,
|
||||
and deploys it to you local m2 repo at
|
||||
<<<${user.home}/.m2/repository>>>. See below for instructions on how
|
||||
<<<${user.home}/.m2/repository>>>. If there are any dependency resolution
|
||||
problems try
|
||||
|
||||
+---
|
||||
$ mvn install -P bootstrap
|
||||
+---
|
||||
|
||||
which enables some additional, non-standard repositories (which
|
||||
should not be present in ther deployed artifacts). You should only
|
||||
need to do this once, because then all the dependencies will be
|
||||
installed in your local repository. To get the source code (where
|
||||
available) for all dependencies, you can use
|
||||
|
||||
+---
|
||||
$ mvn dependency:sources -P bootstrap
|
||||
+---
|
||||
|
||||
See below for instructions on how
|
||||
to build the documentation and web site.
|
||||
|
||||
By default the whole project (including subprojects) will be built
|
||||
|
||||
59
src/site/apt/migration/2.1.2-2.1.3.apt
Normal file
59
src/site/apt/migration/2.1.2-2.1.3.apt
Normal file
@@ -0,0 +1,59 @@
|
||||
Spring Batch 2.1.3 Release Notes
|
||||
|
||||
* Bug
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1572}[BATCH-1572]}} - Step not failing on org.springframework.transaction.UnexpectedRollbackException
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1579}[BATCH-1579]}} - Problems with null job parameters and late binding
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1597}[BATCH-1597]}} - DirectPoller only works with timeout in milliseconds
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1598}[BATCH-1598]}} - JobRepositoryTestUtils delete job execution fails if there is another execution with the same job instance
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1600}[BATCH-1600]}} - CommandLineJobRunner cannot stop a Job execution that was restarted
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1601}[BATCH-1601]}} - The "initialized" field in org.springframework.batch.test.DataSourceInitializer shouldn't be static.
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1602}[BATCH-1602]}} - Empty string JobParameter would be re-hydrated as null by Oracle
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1603}[BATCH-1603]}} - MultiResourceItemReader infinite read/exception loop after a failed delegate.open() when skip policy is very lax
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1605}[BATCH-1605]}} - HippyMethodInvoker candidate arguments repeated
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1615}[BATCH-1615]}} - MultiResourceItemReader infinite read/exception loop after NonTransientDataAccessResourceException
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1616}[BATCH-1616]}} - A custom partitioner no longer restart the job properly upon failure
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1618}[BATCH-1618]}} - MultiResourceItemWriter creates an empty file if the number of item to write is a multiple of itemCountLimitPerResource
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1619}[BATCH-1619]}} - BadSqlGrammarException accessing Executions page with Apache Derby 10.6 datasource
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1620}[BATCH-1620]}} - FlowStep never fails
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1621}[BATCH-1621]}} - Add <step flow="..."/> attribute
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1623}[BATCH-1623]}} - A chunk configured with processor-transactional="true" shouldn't require a retry- or skip-limit
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1624}[BATCH-1624]}} - Spring Batch Website documentation - fix link to Spring Integration
|
||||
|
||||
* Improvement
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-836}[BATCH-836]}} - CompositeItemWriter should also implement ItemStream
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1531}[BATCH-1531]}} - Restart of a partitioned Step should not call Partitioner
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1556}[BATCH-1556]}} - JobLauncher sequence diagrams have wrong message (call) labels
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1604}[BATCH-1604]}} - Update docs to describe use of Unicode characters in JobRepository
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1608}[BATCH-1608]}} - Javadocs: declare that readDate might throw NullPointerException when value is empty
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1609}[BATCH-1609]}} - Javadocs: DefaultFieldSet.readAndTrim does not throw a NullPointerException as stated by the Javadoc
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1614}[BATCH-1614]}} - More informative log message for ClassPathXmlApplicationContextFactory.ResourceXmlApplicationContext
|
||||
|
||||
* New Feature
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1495}[BATCH-1495]}} - Detect possible overrun and memory issues when skip limit is not reached but reader skips so many records that the chunk never completes
|
||||
|
||||
* {{{http://jira.springsource.org/browse/BATCH-1622}[BATCH-1622]}} - Support transaction propagation properly in ResourcelessTransactionManager
|
||||
@@ -13,6 +13,8 @@
|
||||
|
||||
Links:
|
||||
|
||||
* {{{2.1.2-2.1.3.html}2.1.2 to 2.1.3}}
|
||||
|
||||
* {{{2.1.1-2.1.2.html}2.1.1 to 2.1.2}}
|
||||
|
||||
* {{{2.1.0-2.1.1.html}2.1.0 to 2.1.1}}
|
||||
|
||||
Reference in New Issue
Block a user