2013-05-17 09:46:47 -04: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"
|
2013-08-08 18:08:44 -04:00
|
|
|
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>
|
2013-05-17 09:46:47 -04:00
|
|
|
|
2013-08-08 18:08:44 -04:00
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>gs-batch-processing</artifactId>
|
|
|
|
|
<version>0.1.0</version>
|
2013-05-17 09:46:47 -04:00
|
|
|
|
|
|
|
|
<parent>
|
2013-07-30 10:19:08 -04:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-07-31 15:42:31 -04:00
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
2015-06-09 09:41:36 -04:00
|
|
|
<version>1.2.4.RELEASE</version>
|
2013-05-17 09:46:47 -04:00
|
|
|
</parent>
|
|
|
|
|
|
2013-08-08 18:08:44 -04:00
|
|
|
<dependencies>
|
2013-05-17 09:46:47 -04:00
|
|
|
<dependency>
|
2013-07-30 10:19:08 -04:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-07-31 15:42:31 -04:00
|
|
|
<artifactId>spring-boot-starter-batch</artifactId>
|
2013-05-17 09:46:47 -04:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hsqldb</groupId>
|
|
|
|
|
<artifactId>hsqldb</artifactId>
|
|
|
|
|
</dependency>
|
2013-08-08 18:08:44 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
2014-02-18 16:33:02 -06:00
|
|
|
|
2013-08-09 13:18:06 -05:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
2014-02-18 16:33:02 -06:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2013-08-09 13:18:06 -05:00
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
2013-05-17 09:46:47 -04:00
|
|
|
</project>
|