2013-07-29 17:56:42 +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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2013-08-30 13:28:34 +08:00
|
|
|
<!-- Your own application should inherit from spring-boot-starter-parent -->
|
2013-07-29 17:56:42 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-08-30 13:28:34 +08:00
|
|
|
<artifactId>spring-boot-samples</artifactId>
|
2013-08-30 17:43:00 +08:00
|
|
|
<version>0.5.0.BUILD-SNAPSHOT</version>
|
2013-07-29 17:56:42 +08:00
|
|
|
</parent>
|
|
|
|
<artifactId>spring-boot-sample-web-static</artifactId>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
<properties>
|
|
|
|
<main.basedir>${basedir}/../..</main.basedir>
|
|
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
2013-07-31 07:20:36 +08:00
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2013-07-29 17:56:42 +08:00
|
|
|
</dependency>
|
2013-08-19 21:10:57 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
</dependency>
|
2013-07-29 17:56:42 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
2013-07-31 07:20:36 +08:00
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
2013-07-29 17:56:42 +08:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2014-01-17 17:07:46 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-01-17 17:59:13 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.webjars</groupId>
|
|
|
|
<artifactId>bootstrap</artifactId>
|
|
|
|
<version>2.3.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.webjars</groupId>
|
|
|
|
<artifactId>jquery</artifactId>
|
|
|
|
<version>2.0.3-1</version>
|
|
|
|
</dependency>
|
2013-07-29 17:56:42 +08:00
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2013-08-30 13:28:34 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-07-29 17:56:42 +08:00
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|