58 lines
2.1 KiB
XML
58 lines
2.1 KiB
XML
|
<?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>
|
||
|
<artifactId>parent-boot-2</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
<relativePath>../parent-boot-2</relativePath>
|
||
|
</parent>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-batch</artifactId>
|
||
|
<version>2.3.6.RELEASE</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.hsqldb</groupId>
|
||
|
<artifactId>hsqldb</artifactId>
|
||
|
<version>${hsqldb.version}</version>
|
||
|
<scope>runtime</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
<version>${spring.boot.batch.version}</version>
|
||
|
<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>
|
||
|
<version>${spring.batch.test.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<properties>
|
||
|
<spring.boot.batch.version>2.3.6.RELEASE</spring.boot.batch.version>
|
||
|
<spring.batch.test.version>4.2.4.RELEASE</spring.batch.test.version>
|
||
|
<hsqldb.version>2.5.1</hsqldb.version>
|
||
|
</properties>
|
||
|
|
||
|
</project>
|