2015-12-28 11:23:13 -05:00
|
|
|
<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">
|
2015-12-13 09:12:09 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2015-12-11 02:16:48 -05:00
|
|
|
|
2016-03-06 04:49:59 -05:00
|
|
|
<groupId>com.baeldung</groupId>
|
2015-12-28 11:23:13 -05:00
|
|
|
<artifactId>spring-batch</artifactId>
|
2015-12-13 09:12:09 -05:00
|
|
|
<version>0.1-SNAPSHOT</version>
|
|
|
|
<packaging>jar</packaging>
|
2015-12-11 02:16:48 -05:00
|
|
|
|
2015-12-28 11:23:13 -05:00
|
|
|
<name>spring-batch</name>
|
2015-12-13 09:12:09 -05:00
|
|
|
<url>http://maven.apache.org</url>
|
2015-12-11 02:16:48 -05:00
|
|
|
|
2017-05-09 16:37:43 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
2015-12-13 09:12:09 -05:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2016-12-09 16:14:10 -05:00
|
|
|
<spring.version>4.3.4.RELEASE</spring.version>
|
|
|
|
<spring.batch.version>3.0.7.RELEASE</spring.batch.version>
|
|
|
|
<sqlite.version>3.15.1</sqlite.version>
|
2015-12-13 09:12:09 -05:00
|
|
|
</properties>
|
2015-12-11 02:16:48 -05:00
|
|
|
|
2015-12-13 09:12:09 -05:00
|
|
|
<dependencies>
|
|
|
|
<!-- SQLite database driver -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.xerial</groupId>
|
|
|
|
<artifactId>sqlite-jdbc</artifactId>
|
|
|
|
<version>${sqlite.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-oxm</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
2017-04-19 10:14:10 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2015-12-13 09:12:09 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-jdbc</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.batch</groupId>
|
|
|
|
<artifactId>spring-batch-core</artifactId>
|
|
|
|
<version>${spring.batch.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2015-12-11 02:16:48 -05:00
|
|
|
|
|
|
|
</project>
|