Michael Minella
12eeb2cee3
[maven-release-plugin] prepare for next development iteration
2013-12-30 12:15:32 -06:00
Michael Minella
a0defe7ea7
[maven-release-plugin] prepare release 2.2.4.RELEASE
2013-12-30 12:12:08 -06:00
Michael Minella
0d45839a88
[maven-release-plugin] prepare for next development iteration
2013-12-30 12:06:43 -06:00
Michael Minella
c8a54f7fad
[maven-release-plugin] prepare release 2.2.3.RELEASE
2013-12-30 12:03:38 -06:00
Michael Minella
a644ab97d6
[maven-release-plugin] prepare for next development iteration
2013-12-30 11:52:02 -06:00
Michael Minella
17b680f31d
Upgraded HSQLDB version to 2.3.1 to fix transaction issue
2013-12-09 14:10:34 -06:00
Michael Minella
3dcbb44906
[maven-release-plugin] prepare release 2.2.3.RELEASE
2013-11-22 17:03:55 -06:00
Michael Minella
c5f65b697f
[maven-release-plugin] prepare for next development iteration
2013-11-22 16:18:46 -06:00
Michael Minella
01620222f6
[maven-release-plugin] prepare release 2.2.2.RELEASE
2013-11-22 16:09:10 -06:00
Michael Minella
35332a4757
[maven-release-plugin] prepare for next development iteration
2013-09-09 21:31:36 -07:00
Michael Minella
395c219b8b
[maven-release-plugin] prepare release 3.0.0.M2
2013-09-09 21:31:30 -07:00
Michael Minella
2c1b8e154a
[maven-release-plugin] prepare for next development iteration
2013-08-23 15:15:56 -05:00
Michael Minella
9618902ce6
[maven-release-plugin] prepare release 3.0.0.M1
2013-08-23 15:15:52 -05:00
Chris Schaefer
7cfd65acf4
move master back to 3.0.0.BUILD-SNAPSHOT
2013-07-30 14:05:55 -04:00
Michael Minella
775dd15be1
BATCH-2004: Added basic wrappers for the the majority of batch artifacts.
2013-07-29 09:15:53 -05:00
Michael Minella
853c960bdf
[maven-release-plugin] prepare for next development iteration
2013-07-26 13:19:49 -05:00
Michael Minella
6669780a74
[maven-release-plugin] prepare release 2.2.1.RELEASE
2013-07-26 13:19:45 -05:00
Michael Minella
820ac0b073
[maven-release-plugin] prepare for next development iteration
2013-06-05 12:13:26 -05:00
Michael Minella
958ec860ba
[maven-release-plugin] prepare release 2.2.0.RELEASE
2013-06-05 12:13:20 -05:00
Michael Minella
0f03ea0ffa
[maven-release-plugin] prepare for next development iteration
2013-05-14 10:36:32 -05:00
Michael Minella
b28feac263
[maven-release-plugin] prepare release 2.2.0.RC2
2013-05-14 10:36:27 -05:00
Dave Syer
bf3cff2cf1
BATCH-2016: move stray repo into bootstrap profile
2013-05-06 09:40:47 +01:00
Michael Minella
a8e9facf68
[maven-release-plugin] prepare for next development iteration
2013-04-08 13:58:09 -05:00
Michael Minella
b683ddcf66
[maven-release-plugin] prepare release 2.2.0.RC1
2013-04-08 13:58:05 -05:00
Michael Minella
38393c0b0d
Fixing maven build for maven 3 and Neo4J dependencies
2013-03-26 11:27:45 -05:00
Michael Minella
790d4366b3
Updated pom reference to SDGF to the released version
2013-03-25 15:29:46 -05:00
Chris Schaefer
082c81765f
BATCH-1968: Upgrade to hsqldb 2.2.9
2013-03-21 10:31:52 -05:00
David Turanski
ed87a0f87a
fixed maven build issues
2013-02-28 11:02:40 -06:00
David Turanski
e4095ab26b
added GemfireItemWriter
2013-02-28 11:02:40 -06:00
Michael Minella
91deb12a83
BATCH-1728: Initial commit of Spring Data ItemReader/ItemWriter implementations
2013-02-19 10:33:06 -06:00
Will Schipp
7e1e66d677
migration from EasyMock to Mockito
2013-02-10 14:30:57 +00:00
Dave Syer
a871d0b80f
Move gemstone repo declarations to samples
2013-02-05 15:06:36 +00:00
Michael Minella
51e0e65063
[maven-release-plugin] prepare for next development iteration
2013-01-24 14:01:10 -06:00
Michael Minella
32af6556e3
[maven-release-plugin] prepare release 2.2.0.M1
2013-01-24 14:01:04 -06:00
Michael Minella
cc370d9ac5
[maven-release-plugin] prepare for next development iteration
2013-01-23 09:54:38 -06:00
Michael Minella
b77d1a28e1
[maven-release-plugin] prepare release 2.2.0.M1
2013-01-23 09:54:30 -06:00
Dave Syer
bc9ee74a25
BATCH-1950: Patch up build
...
* Ensure bundlor is available and remove from sample
* Tidy dependencies in some poms
* Update some template.mf dependencies
* Add .travis.yml for automated builds independent of bamboo
2013-01-18 13:46:02 +00:00
Michael Minella
c097055288
Removing redundant dependency on JPA 1.0 jar to fix integration test
2013-01-09 11:00:14 -06:00
Michael Minella
6955ab1d6b
BATCH-1904: Updated to support Hibernate 4
2012-12-31 09:08:57 -06:00
Michael Minella
a193e1051f
BATCH-1938: Upgraded to Spring 3.2.0.RELEASE
2012-12-20 15:40:02 -06:00
wxlund
9e840026e3
Had to add back in the reference to sqlfire.
2012-12-18 13:21:32 -06:00
Dave Syer
25cd6d6826
BATCH-1918: First effort at @EnableBatchProcessing
...
Example:
@Configuration
@EnableBatchProcessing
public class RetrySampleConfiguration {
@Autowired
private JobBuilderFactory jobs;
@Autowired
private StepBuilderFactory steps;
@Bean
public Job retrySample() throws Exception {
return jobs.get("retrySample").start(step()).build();
}
@Bean
protected Step step() throws Exception {
return steps.get("step").<Trade, Object> chunk(1).reader(reader()).writer(writer()).faultTolerant()
.retry(Exception.class).retryLimit(3).build();
}
@Bean
protected ItemReader<Trade> reader() {
GeneratingTradeItemReader reader = new GeneratingTradeItemReader();
reader.setLimit(10);
return reader;
}
@Bean
protected ItemWriter<Object> writer() {
return new RetrySampleItemWriter<Object>();
}
}
2012-12-17 14:17:48 -06:00
Michael Minella
491359aacc
BATCH-1799: Intermediate commit with POC code
2012-11-13 09:51:02 -06:00
Michael Minella
38ef37b882
BATCH-1897: Removed unused ant support
2012-10-05 10:45:30 -05:00
Michael Minella
e827990f08
BATCH-1895: Updated to use spring-retry
2012-10-02 10:06:44 -05:00
Dave Syer
5410e076a8
BATCH-1685: fix broken dependeny on spring-oxm
2012-09-24 16:34:02 +01:00
Chris Schaefer
a8d2dd2a3f
BATCH-1887: Cleanup maven warnings
2012-09-12 06:08:36 +01:00
Chris Schaefer
d512ba8ff2
BATCH-1685: Upgrade minimum support level for Spring to 3.1.2
2012-09-12 06:08:36 +01:00
Chris Schaefer
fa3fe86640
BATCH-1883: Bump spring-amqp Version to 1.1.2
2012-09-06 01:34:14 -04:00
Chris Schaefer
1607014886
BATCH-1882: Add support for AMQP backed ItemReader / ItemWriter implementations
...
Add Spring AMQP and Spring Rabbit dependencies. Update
EasyMock from 2.3 to 2.4 to allow for concrete class mocking.
2012-08-28 10:45:00 +01:00