Skip to content

Commit d272105

Browse files
author
trisberg
committed
BATCH-762: changed ExecutionContext storage strategy to use JSON for serialization in a single String/CLOB
1 parent 2b47068 commit d272105

File tree

27 files changed

+465
-349
lines changed

27 files changed

+465
-349
lines changed

pom.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -499,8 +499,12 @@
499499
<dependency>
500500
<groupId>com.thoughtworks.xstream</groupId>
501501
<artifactId>xstream</artifactId>
502-
<version>1.2.1</version>
503-
<optional>true</optional>
502+
<version>1.3</version>
503+
</dependency>
504+
<dependency>
505+
<groupId>org.codehaus.jettison</groupId>
506+
<artifactId>jettison</artifactId>
507+
<version>1.0.1</version>
504508
</dependency>
505509
<dependency>
506510
<groupId>stax</groupId>

spring-batch-core/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,14 @@
7474
<artifactId>cglib-nodep</artifactId>
7575
<scope>test</scope>
7676
</dependency>
77+
<dependency>
78+
<groupId>com.thoughtworks.xstream</groupId>
79+
<artifactId>xstream</artifactId>
80+
</dependency>
81+
<dependency>
82+
<groupId>org.codehaus.jettison</groupId>
83+
<artifactId>jettison</artifactId>
84+
</dependency>
7785
<!-- Spring Dependencies -->
7886
<dependency>
7987
<groupId>org.springframework</groupId>

0 commit comments

Comments
 (0)