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>
|
2013-07-26 18:50:02 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-08-03 12:48:19 +08:00
|
|
|
<artifactId>spring-boot-build</artifactId>
|
2013-08-02 18:58:53 +08:00
|
|
|
<version>0.5.0.BUILD-SNAPSHOT</version>
|
2013-04-24 17:02:07 +08:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
<prerequisites>
|
|
|
|
<maven>3.0.0</maven>
|
|
|
|
</prerequisites>
|
|
|
|
<properties>
|
2013-07-06 01:26:50 +08:00
|
|
|
<main.basedir>${basedir}</main.basedir>
|
2013-04-24 17:02:07 +08:00
|
|
|
</properties>
|
2013-07-06 01:26:50 +08:00
|
|
|
<modules>
|
2013-08-03 12:48:19 +08:00
|
|
|
<module>spring-boot-dependencies</module>
|
|
|
|
<module>spring-boot-parent</module>
|
2013-07-27 03:30:54 +08:00
|
|
|
<module>spring-boot</module>
|
|
|
|
<module>spring-boot-autoconfigure</module>
|
2013-08-02 16:53:03 +08:00
|
|
|
<module>spring-boot-tools</module>
|
2013-07-31 16:46:34 +08:00
|
|
|
<module>spring-boot-actuator</module>
|
2013-07-31 07:20:36 +08:00
|
|
|
<module>spring-boot-starters</module>
|
2013-07-27 05:10:38 +08:00
|
|
|
<module>spring-boot-cli</module>
|
2013-08-01 15:09:49 +08:00
|
|
|
<module>spring-boot-integration-tests</module>
|
2013-07-06 01:26:50 +08:00
|
|
|
</modules>
|
2013-04-24 17:02:07 +08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2013-08-03 12:48:19 +08:00
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
2013-04-24 17:02:07 +08:00
|
|
|
<configuration>
|
2013-08-03 12:48:19 +08:00
|
|
|
<skip>true</skip>
|
2013-04-24 17:02:07 +08:00
|
|
|
</configuration>
|
2013-08-03 12:48:19 +08:00
|
|
|
<inherited>false</inherited>
|
2013-04-24 17:02:07 +08:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|