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"
|
|
|
|
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>
|
|
|
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>gs-batch-processing-complete</artifactId>
|
2013-05-28 05:48:13 -04:00
|
|
|
<version>0.1.0</version>
|
2013-05-16 11:12:00 -04:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.bootstrap</groupId>
|
|
|
|
<artifactId>spring-bootstrap-starters</artifactId>
|
|
|
|
<version>0.5.0.BUILD-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.bootstrap</groupId>
|
2013-05-16 11:26:46 -04:00
|
|
|
<artifactId>spring-bootstrap-batch-starter</artifactId>
|
2013-05-16 11:12:00 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hsqldb</groupId>
|
|
|
|
<artifactId>hsqldb</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2013-06-03 03:16:24 -04:00
|
|
|
<!-- {!begin#shade-config} -->
|
2013-05-16 11:12:00 -04:00
|
|
|
<properties>
|
2013-05-16 11:26:46 -04:00
|
|
|
<start-class>hello.BatchConfiguration</start-class>
|
2013-05-16 11:12:00 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2013-06-03 03:16:24 -04:00
|
|
|
<!-- {!end#shade-config} -->
|
2013-05-16 11:12:00 -04:00
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spring-snapshots</id>
|
|
|
|
<url>http://repo.springsource.org/snapshot</url>
|
|
|
|
<snapshots><enabled>true</enabled></snapshots>
|
|
|
|
</repository>
|
2013-05-16 15:14:19 -04:00
|
|
|
<repository>
|
|
|
|
<id>spring-milestones</id>
|
|
|
|
<url>http://repo.springsource.org/milestone</url>
|
|
|
|
<snapshots><enabled>true</enabled></snapshots>
|
|
|
|
</repository>
|
2013-05-16 11:12:00 -04:00
|
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>spring-snapshots</id>
|
|
|
|
<url>http://repo.springsource.org/snapshot</url>
|
|
|
|
<snapshots><enabled>true</enabled></snapshots>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
|
|
|
</project>
|