2013-05-16 11:12:00 -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-16 11:12:00 -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-16 11:12:00 -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>
|
2014-11-12 13:07:57 -06:00
|
|
|
<version>1.1.9.RELEASE</version>
|
2013-05-16 11:12:00 -04:00
|
|
|
</parent>
|
|
|
|
|
2013-08-08 18:08:44 -04:00
|
|
|
<dependencies>
|
2013-05-16 11:12:00 -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-16 11:12:00 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hsqldb</groupId>
|
|
|
|
<artifactId>hsqldb</artifactId>
|
|
|
|
</dependency>
|
2013-08-08 18:08:44 -04:00
|
|
|
</dependencies>
|
2013-05-16 11:12:00 -04:00
|
|
|
|
2013-08-08 18:08:44 -04:00
|
|
|
<properties>
|
2013-08-13 16:22:44 -04:00
|
|
|
<start-class>hello.Application</start-class>
|
2013-08-08 18:08:44 -04:00
|
|
|
</properties>
|
2013-05-16 11:12:00 -04:00
|
|
|
|
2013-08-08 18:08:44 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
2014-06-10 19:16:14 -05:00
|
|
|
<id>spring-releases</id>
|
2014-06-11 09:08:50 -05:00
|
|
|
<url>http://repo.spring.io/libs-release</url>
|
2013-08-08 18:08:44 -04:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
2014-06-10 19:16:14 -05:00
|
|
|
<id>spring-releases</id>
|
2014-06-11 09:08:50 -05:00
|
|
|
<url>http://repo.spring.io/libs-release</url>
|
2013-08-08 18:08:44 -04:00
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
2013-05-16 11:12:00 -04:00
|
|
|
|
|
|
|
</project>
|