|
|
|
<?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>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-parent</artifactId>
|
|
|
|
<version>0.5.0.BUILD-SNAPSHOT</version>
|
|
|
|
<relativePath>../spring-boot-parent</relativePath>
|
|
|
|
</parent>
|
|
|
|
<artifactId>spring-boot-samples</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
|
|
<main.basedir>${basedir}/..</main.basedir>
|
|
|
|
</properties>
|
|
|
|
<modules>
|
|
|
|
<module>spring-boot-sample-actuator</module>
|
|
|
|
<module>spring-boot-sample-actuator-ui</module>
|
|
|
|
<module>spring-boot-sample-batch</module>
|
|
|
|
<module>spring-boot-sample-data-jpa</module>
|
|
|
|
<module>spring-boot-sample-integration</module>
|
|
|
|
<module>spring-boot-sample-jetty</module>
|
|
|
|
<module>spring-boot-sample-profile</module>
|
|
|
|
<module>spring-boot-sample-simple</module>
|
|
|
|
<module>spring-boot-sample-tomcat</module>
|
|
|
|
<module>spring-boot-sample-traditional</module>
|
|
|
|
<module>spring-boot-sample-web-static</module>
|
|
|
|
<module>spring-boot-sample-web-ui</module>
|
|
|
|
<!--module>spring-boot-sample-websocket</module-->
|
|
|
|
<module>spring-boot-sample-xml</module>
|
|
|
|
</modules>
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>repackage</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<version>2.3</version>
|
|
|
|
<configuration>
|
|
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
</project>
|