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

134 lines
4.4 KiB
XML
Raw Normal View History

2013-07-06 01:26:50 +08:00
<?xml version="1.0" encoding="UTF-8"?>
2014-04-01 18:05: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-07-06 01:26:50 +08:00
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
2014-04-24 17:24:28 +08:00
<version>1.0.3.BUILD-SNAPSHOT</version>
<relativePath>../spring-boot-starters/spring-boot-starter-parent</relativePath>
2013-07-06 01:26:50 +08:00
</parent>
<artifactId>spring-boot-samples</artifactId>
2013-07-06 01:26:50 +08:00
<packaging>pom</packaging>
2014-04-01 16:10:51 +08:00
<name>Spring Boot Samples</name>
<description>Spring Boot Samples</description>
<url>http://projects.spring.io/spring-boot/</url>
<organization>
<name>Pivotal Software, Inc.</name>
<url>http://www.spring.io</url>
</organization>
2013-07-06 01:26:50 +08:00
<properties>
<main.basedir>${basedir}/..</main.basedir>
</properties>
<modules>
2013-07-31 16:46:34 +08:00
<module>spring-boot-sample-actuator</module>
<module>spring-boot-sample-actuator-log4j</module>
2013-12-10 00:17:53 +08:00
<module>spring-boot-sample-actuator-noweb</module>
2013-07-31 16:46:34 +08:00
<module>spring-boot-sample-actuator-ui</module>
2013-10-04 22:38:48 +08:00
<module>spring-boot-sample-amqp</module>
<module>spring-boot-sample-aop</module>
<module>spring-boot-sample-batch</module>
<module>spring-boot-sample-data-jpa</module>
2013-09-13 23:13:24 +08:00
<module>spring-boot-sample-data-mongodb</module>
2013-12-23 20:28:24 +08:00
<module>spring-boot-sample-data-redis</module>
2014-02-27 18:33:44 +08:00
<module>spring-boot-sample-data-rest</module>
<module>spring-boot-sample-integration</module>
<module>spring-boot-sample-jetty</module>
<module>spring-boot-sample-profile</module>
2013-11-02 23:49:36 +08:00
<module>spring-boot-sample-secure</module>
<module>spring-boot-sample-servlet</module>
<module>spring-boot-sample-simple</module>
<module>spring-boot-sample-tomcat</module>
<module>spring-boot-sample-tomcat-multi-connectors</module>
<module>spring-boot-sample-tomcat8-jsp</module>
<module>spring-boot-sample-traditional</module>
<module>spring-boot-sample-web-method-security</module>
<module>spring-boot-sample-web-secure</module>
<module>spring-boot-sample-web-static</module>
<module>spring-boot-sample-web-jsp</module>
<module>spring-boot-sample-web-ui</module>
2013-08-22 04:54:35 +08:00
<module>spring-boot-sample-websocket</module>
<module>spring-boot-sample-xml</module>
2013-07-06 01:26:50 +08:00
</modules>
2014-02-19 13:57:47 +08:00
<!-- No dependencies - otherwise the samples won't work if you change the
parent -->
2013-10-09 11:25:10 +08:00
<build>
<plugins>
<plugin>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<useProjectReferences>false</useProjectReferences>
<additionalConfig>
<file>
<name>.settings/org.eclipse.jdt.ui.prefs</name>
<location>${main.basedir}/eclipse/org.eclipse.jdt.ui.prefs</location>
</file>
<file>
<name>.settings/org.eclipse.jdt.core.prefs</name>
<location>${main.basedir}/eclipse/org.eclipse.jdt.core.prefs</location>
</file>
</additionalConfig>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/*Tests.java</include>
</includes>
<excludes>
<exclude>**/Abstract*.java</exclude>
</excludes>
<systemPropertyVariables>
<java.security.egd>file:/dev/./urandom</java.security.egd>
<java.awt.headless>true</java.awt.headless>
</systemPropertyVariables>
</configuration>
</plugin>
2013-10-09 11:25:10 +08:00
</plugins>
</build>
<repositories>
<repository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>http://repo.spring.io/snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>http://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>http://repo.spring.io/snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>http://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>spring-releases</id>
<name>Spring Releases</name>
<url>http://repo.spring.io/release</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
2013-07-06 01:26:50 +08:00
</project>