2020-12-01 02:18:26 -05:00
|
|
|
<?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/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>spring-batch-2</artifactId>
|
|
|
|
<version>0.1-SNAPSHOT</version>
|
|
|
|
<name>spring-batch-2</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<url>http://maven.apache.org</url>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2023-04-05 05:46:50 -04:00
|
|
|
<artifactId>parent-boot-3</artifactId>
|
2020-12-01 02:18:26 -05:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2023-04-05 05:46:50 -04:00
|
|
|
<relativePath>../parent-boot-3</relativePath>
|
2020-12-01 02:18:26 -05:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-batch</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2021-11-24 17:18:00 -05:00
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
2020-12-01 02:18:26 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.junit.vintage</groupId>
|
|
|
|
<artifactId>junit-vintage-engine</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.batch</groupId>
|
|
|
|
<artifactId>spring-batch-test</artifactId>
|
2021-01-07 17:14:19 -05:00
|
|
|
<version>${spring.batch.version}</version>
|
2020-12-01 02:18:26 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-11-24 16:52:41 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.awaitility</groupId>
|
|
|
|
<artifactId>awaitility</artifactId>
|
|
|
|
<version>${awaitility.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2024-01-21 06:40:16 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
</dependency>
|
2020-12-01 02:18:26 -05:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
2023-04-05 05:46:50 -04:00
|
|
|
<spring.batch.version>5.0.0</spring.batch.version>
|
|
|
|
<awaitility.version>4.2.0</awaitility.version>
|
|
|
|
<start-class>com.baeldung.batch.SpringBootBatchProcessingApplication</start-class>
|
2024-01-21 06:40:16 -05:00
|
|
|
<lombok.version>1.18.28</lombok.version>
|
2020-12-01 02:18:26 -05:00
|
|
|
</properties>
|
|
|
|
|
2021-05-13 13:13:38 -04:00
|
|
|
</project>
|