spring-boot/spring-boot-samples/spring-boot-sample-batch/pom.xml

41 lines
1.4 KiB
XML
Raw Normal View History

2013-04-24 17:02:07 +08:00
<?xml version="1.0" encoding="UTF-8"?>
2014-04-01 18:05:51 +08: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">
2013-04-24 17:02:07 +08:00
<modelVersion>4.0.0</modelVersion>
<parent>
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
2014-04-24 17:24:28 +08:00
<version>1.0.3.BUILD-SNAPSHOT</version>
2013-04-24 17:02:07 +08:00
</parent>
<artifactId>spring-boot-sample-batch</artifactId>
2014-04-01 16:10:51 +08:00
<name>Spring Boot Batch Sample</name>
<description>Spring Boot Batch Sample</description>
<url>http://projects.spring.io/spring-boot/</url>
<organization>
<name>Pivotal Software, Inc.</name>
<url>http://www.spring.io</url>
</organization>
2013-07-06 01:26:50 +08:00
<properties>
<main.basedir>${basedir}/../..</main.basedir>
</properties>
2013-04-24 17:02:07 +08:00
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-batch</artifactId>
2013-04-24 17:02:07 +08:00
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
2013-04-24 17:02:07 +08:00
</dependencies>
2013-07-06 01:26:50 +08:00
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
2013-07-06 01:26:50 +08:00
</plugin>
</plugins>
</build>
2013-04-24 17:02:07 +08:00
</project>