Renamed spring-boot-ups -> spring-boot-starter

This commit is contained in:
Phillip Webb
2013-07-30 16:20:36 -07:00
parent 2f0a96c986
commit 3bb79db579
35 changed files with 104 additions and 104 deletions

View File

@@ -0,0 +1,58 @@
<?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>
</parent>
<artifactId>spring-boot-starters</artifactId>
<packaging>pom</packaging>
<properties>
<main.basedir>${basedir}/..</main.basedir>
</properties>
<modules>
<module>spring-boot-starter</module>
<module>spring-boot-starter-batch</module>
<module>spring-boot-starter-data-jpa</module>
<module>spring-boot-starter-integration</module>
<module>spring-boot-starter-jetty</module>
<module>spring-boot-starter-logging</module>
<module>spring-boot-starter-ops</module>
<module>spring-boot-starter-parent</module>
<module>spring-boot-starter-security</module>
<module>spring-boot-starter-tomcat</module>
<module>spring-boot-starter-web</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<phase>process-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<inherited>false</inherited>
<configuration>
<useDefaultDelimiters>false</useDefaultDelimiters>
<delimiters>
<delimiter>@{*}</delimiter>
</delimiters>
<resources>
<resource>
<directory>src/main/parent</directory>
<filtering>true</filtering>
</resource>
</resources>
<outputDirectory>${basedir}/spring-boot-starter-parent</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>