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

31 lines
1005 B
XML
Raw Normal View History

2013-04-24 17:02:07 +08: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">
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>
2013-08-30 17:43:00 +08:00
<version>0.5.0.BUILD-SNAPSHOT</version>
2013-04-24 17:02:07 +08:00
</parent>
<artifactId>spring-boot-sample-xml</artifactId>
<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>
<artifactId>spring-boot-starter</artifactId>
2013-04-24 17:02:07 +08:00
</dependency>
</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>