Skip to content

Commit 1ed351e

Browse files
committed
Add spring-expression dependency to spring-batch-infrastructure
Before this commit, there was a compilation error in SpELItemKeyMapper due to missing MapAccessor class which moved from spring-context to spring-expression in Spring Framework 7. Related to spring-projects/spring-framework#35537
1 parent 90d8959 commit 1ed351e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

spring-batch-infrastructure/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@
5151
<version>${spring-framework.version}</version>
5252
<optional>true</optional>
5353
</dependency>
54+
<dependency>
55+
<groupId>org.springframework</groupId>
56+
<artifactId>spring-expression</artifactId>
57+
<version>${spring-framework.version}</version>
58+
<optional>true</optional>
59+
</dependency>
5460
<dependency>
5561
<groupId>org.springframework</groupId>
5662
<artifactId>spring-orm</artifactId>

0 commit comments

Comments
 (0)