Skip to content

Commit e6a3c4c

Browse files
committed
#BAEL-10229 Fix the build (spring-batch)
1 parent 995d208 commit e6a3c4c

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

spring-batch/pom.xml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<groupId>com.baeldung</groupId>
1313
<artifactId>parent-boot-2</artifactId>
1414
<version>0.0.1-SNAPSHOT</version>
15+
<relativePath>../parent-boot-2</relativePath>
1516
</parent>
1617

1718
<dependencies>
@@ -75,12 +76,23 @@
7576
<version>${opencsv.version}</version>
7677
</dependency>
7778

79+
<dependency>
80+
<groupId>org.springframework.boot</groupId>
81+
<artifactId>spring-boot-starter-batch</artifactId>
82+
</dependency>
83+
7884
<dependency>
7985
<groupId>org.hsqldb</groupId>
8086
<artifactId>hsqldb</artifactId>
8187
<scope>runtime</scope>
8288
</dependency>
83-
89+
90+
<dependency>
91+
<groupId>org.awaitility</groupId>
92+
<artifactId>awaitility</artifactId>
93+
<version>${awaitility.version}</version>
94+
<scope>test</scope>
95+
</dependency>
8496
</dependencies>
8597

8698
<properties>
@@ -89,6 +101,7 @@
89101
<sqlite.version>3.15.1</sqlite.version>
90102
<opencsv.version>4.1</opencsv.version>
91103
<jaxb.version>2.3.1</jaxb.version>
104+
<awaitility.version>3.1.1</awaitility.version>
92105
</properties>
93106

94107
</project>

0 commit comments

Comments
 (0)