2013-04-24 17:02:07 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2013-06-13 03:12: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>
|
2013-07-26 18:50:02 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-08-05 19:43:24 +08:00
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
2013-08-30 17:29:40 +08:00
|
|
|
<version>0.5.0.M2</version>
|
2013-08-06 14:22:37 +08:00
|
|
|
<relativePath>../../spring-boot-starters/spring-boot-starter-parent</relativePath>
|
2013-04-24 17:02:07 +08:00
|
|
|
</parent>
|
2013-07-26 18:50:02 +08:00
|
|
|
<artifactId>spring-boot-sample-xml</artifactId>
|
2013-07-16 21:38:24 +08:00
|
|
|
<packaging>jar</packaging>
|
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>${project.groupId}</groupId>
|
2013-07-31 07:20:36 +08:00
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
2013-04-24 17:02:07 +08:00
|
|
|
</dependency>
|
2013-08-08 13:52:26 +08:00
|
|
|
<!-- This dependency is just for our integration testing, your app would
|
|
|
|
not need it -->
|
2013-08-08 13:34:09 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>spring-boot</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>tests</classifier>
|
|
|
|
<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>${project.groupId}</groupId>
|
2013-07-26 18:50:02 +08:00
|
|
|
<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>
|