spring-boot/pom.xml

40 lines
1.2 KiB
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>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-build</artifactId>
2013-08-30 17:43:00 +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>
<module>spring-boot-dependencies</module>
<module>spring-boot-parent</module>
<module>spring-boot</module>
<module>spring-boot-autoconfigure</module>
<module>spring-boot-tools</module>
2013-07-31 16:46:34 +08:00
<module>spring-boot-actuator</module>
<module>spring-boot-starters</module>
2013-07-27 05:10:38 +08:00
<module>spring-boot-cli</module>
<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>
<artifactId>maven-deploy-plugin</artifactId>
2013-08-25 14:14:09 +08:00
<version>2.7</version>
2013-04-24 17:02:07 +08:00
<configuration>
<skip>true</skip>
2013-04-24 17:02:07 +08:00
</configuration>
<inherited>false</inherited>
2013-04-24 17:02:07 +08:00
</plugin>
</plugins>
</build>
</project>