diff --git a/pom.xml b/pom.xml
index 5826f7c8cd..912f4037ad 100644
--- a/pom.xml
+++ b/pom.xml
@@ -45,7 +45,7 @@
spring-boot-maven-plugin
spring-boot-gradle-plugin
spring-boot-ops
- spring-boot-ups
+ spring-boot-starters
spring-boot-cli
spring-boot-integration-tests
diff --git a/spring-boot-cli/samples/ops.groovy b/spring-boot-cli/samples/ops.groovy
index bb327e6579..511b42c2e8 100644
--- a/spring-boot-cli/samples/ops.groovy
+++ b/spring-boot-cli/samples/ops.groovy
@@ -1,6 +1,6 @@
package org.test
-@Grab("org.springframework.boot:spring-boot-up-ops:0.5.0.BUILD-SNAPSHOT")
+@Grab("org.springframework.boot:spring-boot-starter-ops:0.5.0.BUILD-SNAPSHOT")
@Controller
class SampleController {
diff --git a/spring-boot-cli/src/main/java/org/springframework/boot/cli/compiler/autoconfigure/SpringBootCompilerAutoConfiguration.java b/spring-boot-cli/src/main/java/org/springframework/boot/cli/compiler/autoconfigure/SpringBootCompilerAutoConfiguration.java
index 7deefee6cb..b708b62cd0 100644
--- a/spring-boot-cli/src/main/java/org/springframework/boot/cli/compiler/autoconfigure/SpringBootCompilerAutoConfiguration.java
+++ b/spring-boot-cli/src/main/java/org/springframework/boot/cli/compiler/autoconfigure/SpringBootCompilerAutoConfiguration.java
@@ -39,7 +39,7 @@ public class SpringBootCompilerAutoConfiguration extends CompilerAutoConfigurati
@Override
public void applyDependencies(DependencyCustomizer dependencies) {
dependencies.ifAnyMissingClasses("org.springframework.boot.SpringApplication")
- .add("org.springframework.boot", "spring-boot-up",
+ .add("org.springframework.boot", "spring-boot-starter",
dependencies.getProperty("spring.boot.version"));
}
diff --git a/spring-boot-integration-tests/pom.xml b/spring-boot-integration-tests/pom.xml
index 1af6a8ca37..075efd6f0d 100644
--- a/spring-boot-integration-tests/pom.xml
+++ b/spring-boot-integration-tests/pom.xml
@@ -46,58 +46,58 @@
${project.groupId}
- spring-boot-up
+ spring-boot-starter
${project.version}
${project.groupId}
- spring-boot-up-batch
+ spring-boot-starter-batch
${project.version}
${project.groupId}
- spring-boot-up-data-jpa
+ spring-boot-starter-data-jpa
${project.version}
${project.groupId}
- spring-boot-up-integration
+ spring-boot-starter-integration
${project.version}
${project.groupId}
- spring-boot-up-jetty
+ spring-boot-starter-jetty
${project.version}
${project.groupId}
- spring-boot-up-logging
+ spring-boot-starter-logging
${project.version}
${project.groupId}
- spring-boot-up-ops
+ spring-boot-starter-ops
${project.version}
${project.groupId}
- spring-boot-up-parent
+ spring-boot-starter-parent
${project.version}
pom
${project.groupId}
- spring-boot-up-security
+ spring-boot-starter-security
${project.version}
${project.groupId}
- spring-boot-up-tomcat
+ spring-boot-starter-tomcat
${project.version}
${project.groupId}
- spring-boot-up-web
+ spring-boot-starter-web
${project.version}
diff --git a/spring-boot-loader-tools/src/test/resources/META-INF/maven/org.springframework.boot/spring-boot-sample-tomcat/pom.xml b/spring-boot-loader-tools/src/test/resources/META-INF/maven/org.springframework.boot/spring-boot-sample-tomcat/pom.xml
index 8ae6fca891..b3cb2d180d 100644
--- a/spring-boot-loader-tools/src/test/resources/META-INF/maven/org.springframework.boot/spring-boot-sample-tomcat/pom.xml
+++ b/spring-boot-loader-tools/src/test/resources/META-INF/maven/org.springframework.boot/spring-boot-sample-tomcat/pom.xml
@@ -15,12 +15,12 @@
${project.groupId}
- spring-boot-up
+ spring-boot-starter
${project.version}
${project.groupId}
- spring-boot-up-tomcat
+ spring-boot-starter-tomcat
${project.version}
diff --git a/spring-boot-samples/spring-boot-sample-batch/pom.xml b/spring-boot-samples/spring-boot-sample-batch/pom.xml
index efd77ddcb4..c5db2cfd9a 100644
--- a/spring-boot-samples/spring-boot-sample-batch/pom.xml
+++ b/spring-boot-samples/spring-boot-sample-batch/pom.xml
@@ -15,7 +15,7 @@
${project.groupId}
- spring-boot-up-batch
+ spring-boot-starter-batch
${project.version}
diff --git a/spring-boot-samples/spring-boot-sample-data-jpa/pom.xml b/spring-boot-samples/spring-boot-sample-data-jpa/pom.xml
index 99c0754837..43c19d1f01 100644
--- a/spring-boot-samples/spring-boot-sample-data-jpa/pom.xml
+++ b/spring-boot-samples/spring-boot-sample-data-jpa/pom.xml
@@ -15,12 +15,12 @@
${project.groupId}
- spring-boot-up-data-jpa
+ spring-boot-starter-data-jpa
${project.version}
${project.groupId}
- spring-boot-up-web
+ spring-boot-starter-web
${project.version}
diff --git a/spring-boot-samples/spring-boot-sample-integration/pom.xml b/spring-boot-samples/spring-boot-sample-integration/pom.xml
index 10c31d6f62..c10e50f527 100644
--- a/spring-boot-samples/spring-boot-sample-integration/pom.xml
+++ b/spring-boot-samples/spring-boot-sample-integration/pom.xml
@@ -15,7 +15,7 @@
org.springframework.boot
- spring-boot-up-integration
+ spring-boot-starter-integration
${project.version}
diff --git a/spring-boot-samples/spring-boot-sample-jetty/pom.xml b/spring-boot-samples/spring-boot-sample-jetty/pom.xml
index 84fe3a13c5..22a74ceb28 100644
--- a/spring-boot-samples/spring-boot-sample-jetty/pom.xml
+++ b/spring-boot-samples/spring-boot-sample-jetty/pom.xml
@@ -15,12 +15,12 @@
${project.groupId}
- spring-boot-up
+ spring-boot-starter
${project.version}
${project.groupId}
- spring-boot-up-jetty
+ spring-boot-starter-jetty
${project.version}
diff --git a/spring-boot-samples/spring-boot-sample-ops-ui/pom.xml b/spring-boot-samples/spring-boot-sample-ops-ui/pom.xml
index c07ca1dc82..bf06ee4280 100644
--- a/spring-boot-samples/spring-boot-sample-ops-ui/pom.xml
+++ b/spring-boot-samples/spring-boot-sample-ops-ui/pom.xml
@@ -15,12 +15,12 @@
${project.groupId}
- spring-boot-up-ops
+ spring-boot-starter-ops
${project.version}
${project.groupId}
- spring-boot-up-web
+ spring-boot-starter-web
${project.version}
diff --git a/spring-boot-samples/spring-boot-sample-ops/pom.xml b/spring-boot-samples/spring-boot-sample-ops/pom.xml
index d456212f3b..f4bf006a62 100644
--- a/spring-boot-samples/spring-boot-sample-ops/pom.xml
+++ b/spring-boot-samples/spring-boot-sample-ops/pom.xml
@@ -15,12 +15,12 @@
${project.groupId}
- spring-boot-up-ops
+ spring-boot-starter-ops
${project.version}
org.springframework.boot
- spring-boot-up-logging
+ spring-boot-starter-logging
diff --git a/spring-boot-samples/spring-boot-sample-ops/start.groovy b/spring-boot-samples/spring-boot-sample-ops/start.groovy
index 9310af15ac..0861416625 100644
--- a/spring-boot-samples/spring-boot-sample-ops/start.groovy
+++ b/spring-boot-samples/spring-boot-sample-ops/start.groovy
@@ -1,5 +1,5 @@
-@Grab("org.springframework.boot:spring-boot-up-ops:0.5.0.BUILD-SNAPSHOT")
-@Grab("org.springframework.boot:spring-boot-up-web:0.5.0.BUILD-SNAPSHOT")
+@Grab("org.springframework.boot:spring-boot-starter-ops:0.5.0.BUILD-SNAPSHOT")
+@Grab("org.springframework.boot:spring-boot-starter-web:0.5.0.BUILD-SNAPSHOT")
@ComponentScan("org.springframework.boot.sample.service")
class Start {
}
diff --git a/spring-boot-samples/spring-boot-sample-profile/pom.xml b/spring-boot-samples/spring-boot-sample-profile/pom.xml
index 450d611fb6..e1cf213435 100644
--- a/spring-boot-samples/spring-boot-sample-profile/pom.xml
+++ b/spring-boot-samples/spring-boot-sample-profile/pom.xml
@@ -15,7 +15,7 @@
${project.groupId}
- spring-boot-up
+ spring-boot-starter
${project.version}
diff --git a/spring-boot-samples/spring-boot-sample-simple/pom.xml b/spring-boot-samples/spring-boot-sample-simple/pom.xml
index d988dd0073..65179e1c6d 100644
--- a/spring-boot-samples/spring-boot-sample-simple/pom.xml
+++ b/spring-boot-samples/spring-boot-sample-simple/pom.xml
@@ -15,7 +15,7 @@
${project.groupId}
- spring-boot-up
+ spring-boot-starter
${project.version}
diff --git a/spring-boot-samples/spring-boot-sample-tomcat/build.gradle b/spring-boot-samples/spring-boot-sample-tomcat/build.gradle
index 3b627e8d67..822e1bce1e 100644
--- a/spring-boot-samples/spring-boot-sample-tomcat/build.gradle
+++ b/spring-boot-samples/spring-boot-sample-tomcat/build.gradle
@@ -16,7 +16,7 @@ repositories {
}
dependencies {
- compile("org.springframework.boot:spring-boot-up-web:0.5.0.BUILD-SNAPSHOT")
+ compile("org.springframework.boot:spring-boot-starter-web:0.5.0.BUILD-SNAPSHOT")
testCompile("junit:junit:4.11")
}
diff --git a/spring-boot-samples/spring-boot-sample-tomcat/pom.xml b/spring-boot-samples/spring-boot-sample-tomcat/pom.xml
index 8ae6fca891..b3cb2d180d 100644
--- a/spring-boot-samples/spring-boot-sample-tomcat/pom.xml
+++ b/spring-boot-samples/spring-boot-sample-tomcat/pom.xml
@@ -15,12 +15,12 @@
${project.groupId}
- spring-boot-up
+ spring-boot-starter
${project.version}
${project.groupId}
- spring-boot-up-tomcat
+ spring-boot-starter-tomcat
${project.version}
diff --git a/spring-boot-samples/spring-boot-sample-traditional/build.gradle b/spring-boot-samples/spring-boot-sample-traditional/build.gradle
index e3388d0eff..09201ec629 100644
--- a/spring-boot-samples/spring-boot-sample-traditional/build.gradle
+++ b/spring-boot-samples/spring-boot-sample-traditional/build.gradle
@@ -17,9 +17,9 @@ repositories {
}
dependencies {
- compile("org.springframework.boot:spring-boot-up:0.5.0.BUILD-SNAPSHOT")
+ compile("org.springframework.boot:spring-boot-starter:0.5.0.BUILD-SNAPSHOT")
compile("org.springframework:spring-webmvc:4.0.0.BUILD-SNAPSHOT")
- providedRuntime("org.springframework.boot:spring-boot-up-tomcat:0.5.0.BUILD-SNAPSHOT")
+ providedRuntime("org.springframework.boot:spring-boot-starter-tomcat:0.5.0.BUILD-SNAPSHOT")
providedRuntime("org.apache.tomcat.embed:tomcat-embed-jasper:7.0.42")
testCompile("junit:junit:4.11")
}
diff --git a/spring-boot-samples/spring-boot-sample-traditional/pom.xml b/spring-boot-samples/spring-boot-sample-traditional/pom.xml
index 7a2f197818..7916f24370 100644
--- a/spring-boot-samples/spring-boot-sample-traditional/pom.xml
+++ b/spring-boot-samples/spring-boot-sample-traditional/pom.xml
@@ -16,7 +16,7 @@
${project.groupId}
- spring-boot-up
+ spring-boot-starter
${project.version}
@@ -26,7 +26,7 @@
${project.groupId}
- spring-boot-up-tomcat
+ spring-boot-starter-tomcat
${project.version}
diff --git a/spring-boot-samples/spring-boot-sample-web-static/pom.xml b/spring-boot-samples/spring-boot-sample-web-static/pom.xml
index 965da4bbfa..5402a3eb8c 100644
--- a/spring-boot-samples/spring-boot-sample-web-static/pom.xml
+++ b/spring-boot-samples/spring-boot-sample-web-static/pom.xml
@@ -15,12 +15,12 @@
${project.groupId}
- spring-boot-up-web
+ spring-boot-starter-web
${project.version}
${project.groupId}
- spring-boot-up-tomcat
+ spring-boot-starter-tomcat
${project.version}
provided
diff --git a/spring-boot-samples/spring-boot-sample-web-ui/pom.xml b/spring-boot-samples/spring-boot-sample-web-ui/pom.xml
index 8d00afaa84..9d1394a366 100644
--- a/spring-boot-samples/spring-boot-sample-web-ui/pom.xml
+++ b/spring-boot-samples/spring-boot-sample-web-ui/pom.xml
@@ -15,7 +15,7 @@
${project.groupId}
- spring-boot-up-web
+ spring-boot-starter-web
${project.version}
diff --git a/spring-boot-samples/spring-boot-sample-xml/pom.xml b/spring-boot-samples/spring-boot-sample-xml/pom.xml
index d66652fa6b..d0deb82377 100644
--- a/spring-boot-samples/spring-boot-sample-xml/pom.xml
+++ b/spring-boot-samples/spring-boot-sample-xml/pom.xml
@@ -15,7 +15,7 @@
${project.groupId}
- spring-boot-up
+ spring-boot-starter
${project.version}
diff --git a/spring-boot-ups/README.md b/spring-boot-starters/README.md
similarity index 100%
rename from spring-boot-ups/README.md
rename to spring-boot-starters/README.md
diff --git a/spring-boot-ups/pom.xml b/spring-boot-starters/pom.xml
similarity index 67%
rename from spring-boot-ups/pom.xml
rename to spring-boot-starters/pom.xml
index 5dd931767c..f1ffd7bf08 100644
--- a/spring-boot-ups/pom.xml
+++ b/spring-boot-starters/pom.xml
@@ -7,23 +7,23 @@
spring-boot-parent
0.5.0.BUILD-SNAPSHOT
- spring-boot-ups
+ spring-boot-starters
pom
${basedir}/..
- spring-boot-up
- spring-boot-up-batch
- spring-boot-up-data-jpa
- spring-boot-up-integration
- spring-boot-up-jetty
- spring-boot-up-logging
- spring-boot-up-ops
- spring-boot-up-parent
- spring-boot-up-security
- spring-boot-up-tomcat
- spring-boot-up-web
+ spring-boot-starter
+ spring-boot-starter-batch
+ spring-boot-starter-data-jpa
+ spring-boot-starter-integration
+ spring-boot-starter-jetty
+ spring-boot-starter-logging
+ spring-boot-starter-ops
+ spring-boot-starter-parent
+ spring-boot-starter-security
+ spring-boot-starter-tomcat
+ spring-boot-starter-web
@@ -48,7 +48,7 @@
true
- ${basedir}/spring-boot-up-parent
+ ${basedir}/spring-boot-starter-parent
diff --git a/spring-boot-ups/spring-boot-up-batch/pom.xml b/spring-boot-starters/spring-boot-starter-batch/pom.xml
similarity index 86%
rename from spring-boot-ups/spring-boot-up-batch/pom.xml
rename to spring-boot-starters/spring-boot-starter-batch/pom.xml
index 806a15386c..b035d3054b 100644
--- a/spring-boot-ups/spring-boot-up-batch/pom.xml
+++ b/spring-boot-starters/spring-boot-starter-batch/pom.xml
@@ -4,10 +4,10 @@
4.0.0
org.springframework.boot
- spring-boot-ups
+ spring-boot-starters
0.5.0.BUILD-SNAPSHOT
- spring-boot-up-batch
+ spring-boot-starter-batch
jar
${basedir}/../..
@@ -15,7 +15,7 @@
${project.groupId}
- spring-boot-up
+ spring-boot-starter
${project.version}
diff --git a/spring-boot-ups/spring-boot-up-data-jpa/pom.xml b/spring-boot-starters/spring-boot-starter-data-jpa/pom.xml
similarity index 89%
rename from spring-boot-ups/spring-boot-up-data-jpa/pom.xml
rename to spring-boot-starters/spring-boot-starter-data-jpa/pom.xml
index 891817a595..2d154930ae 100644
--- a/spring-boot-ups/spring-boot-up-data-jpa/pom.xml
+++ b/spring-boot-starters/spring-boot-starter-data-jpa/pom.xml
@@ -4,10 +4,10 @@
4.0.0
org.springframework.boot
- spring-boot-ups
+ spring-boot-starters
0.5.0.BUILD-SNAPSHOT
- spring-boot-up-data-jpa
+ spring-boot-starter-data-jpa
jar
${basedir}/../..
@@ -15,7 +15,7 @@
${project.groupId}
- spring-boot-up
+ spring-boot-starter
${project.version}
diff --git a/spring-boot-ups/spring-boot-up-integration/pom.xml b/spring-boot-starters/spring-boot-starter-integration/pom.xml
similarity index 92%
rename from spring-boot-ups/spring-boot-up-integration/pom.xml
rename to spring-boot-starters/spring-boot-starter-integration/pom.xml
index 986386b435..7182b9cfd5 100644
--- a/spring-boot-ups/spring-boot-up-integration/pom.xml
+++ b/spring-boot-starters/spring-boot-starter-integration/pom.xml
@@ -4,10 +4,10 @@
4.0.0
org.springframework.boot
- spring-boot-ups
+ spring-boot-starters
0.5.0.BUILD-SNAPSHOT
- spring-boot-up-integration
+ spring-boot-starter-integration
jar
${basedir}/../..
@@ -15,7 +15,7 @@
${project.groupId}
- spring-boot-up
+ spring-boot-starter
${project.version}
diff --git a/spring-boot-ups/spring-boot-up-jetty/pom.xml b/spring-boot-starters/spring-boot-starter-jetty/pom.xml
similarity index 88%
rename from spring-boot-ups/spring-boot-up-jetty/pom.xml
rename to spring-boot-starters/spring-boot-starter-jetty/pom.xml
index c8c9a91659..606ebbdb05 100644
--- a/spring-boot-ups/spring-boot-up-jetty/pom.xml
+++ b/spring-boot-starters/spring-boot-starter-jetty/pom.xml
@@ -4,10 +4,10 @@
4.0.0
org.springframework.boot
- spring-boot-ups
+ spring-boot-starters
0.5.0.BUILD-SNAPSHOT
- spring-boot-up-jetty
+ spring-boot-starter-jetty
jar
${basedir}/../..
diff --git a/spring-boot-ups/spring-boot-up-logging/pom.xml b/spring-boot-starters/spring-boot-starter-logging/pom.xml
similarity index 89%
rename from spring-boot-ups/spring-boot-up-logging/pom.xml
rename to spring-boot-starters/spring-boot-starter-logging/pom.xml
index dc8e444dae..2c897d257f 100644
--- a/spring-boot-ups/spring-boot-up-logging/pom.xml
+++ b/spring-boot-starters/spring-boot-starter-logging/pom.xml
@@ -4,10 +4,10 @@
4.0.0
org.springframework.boot
- spring-boot-ups
+ spring-boot-starters
0.5.0.BUILD-SNAPSHOT
- spring-boot-up-logging
+ spring-boot-starter-logging
jar
${basedir}/../..
diff --git a/spring-boot-ups/spring-boot-up-ops/pom.xml b/spring-boot-starters/spring-boot-starter-ops/pom.xml
similarity index 84%
rename from spring-boot-ups/spring-boot-up-ops/pom.xml
rename to spring-boot-starters/spring-boot-starter-ops/pom.xml
index a5901236c3..aa8273493b 100644
--- a/spring-boot-ups/spring-boot-up-ops/pom.xml
+++ b/spring-boot-starters/spring-boot-starter-ops/pom.xml
@@ -4,10 +4,10 @@
4.0.0
org.springframework.boot
- spring-boot-ups
+ spring-boot-starters
0.5.0.BUILD-SNAPSHOT
- spring-boot-up-ops
+ spring-boot-starter-ops
jar
${basedir}/../..
@@ -15,7 +15,7 @@
${project.groupId}
- spring-boot-up
+ spring-boot-starter
${project.version}
diff --git a/spring-boot-ups/spring-boot-up-parent/pom.xml b/spring-boot-starters/spring-boot-starter-parent/pom.xml
similarity index 94%
rename from spring-boot-ups/spring-boot-up-parent/pom.xml
rename to spring-boot-starters/spring-boot-starter-parent/pom.xml
index 2d8ee2c3be..2140b06a2c 100644
--- a/spring-boot-ups/spring-boot-up-parent/pom.xml
+++ b/spring-boot-starters/spring-boot-starter-parent/pom.xml
@@ -6,7 +6,7 @@ This POM file that can be used as a parent for your own builds. It provides gene
useful dependencies and plugins.
NOTE: If you are editing a local checkout of this file, be sure to modify
-'spring-boot-ups/src/main/parent/pom.xml'.
+'spring-boot-starters/src/main/parent/pom.xml'.
-->
@@ -18,7 +18,7 @@ NOTE: If you are editing a local checkout of this file, be sure to modify
org.springframework.boot
- spring-boot-up-parent
+ spring-boot-starter-parent
0.5.0.BUILD-SNAPSHOT
pom
@@ -56,47 +56,47 @@ NOTE: If you are editing a local checkout of this file, be sure to modify
org.springframework.boot
- spring-boot-up
+ spring-boot-starter
${spring.boot.version}
org.springframework.boot
- spring-boot-up-ops
+ spring-boot-starter-ops
${spring.boot.version}
org.springframework.boot
- spring-boot-up-web
+ spring-boot-starter-web
${spring.boot.version}
org.springframework.boot
- spring-boot-up-tomcat
+ spring-boot-starter-tomcat
${spring.boot.version}
org.springframework.boot
- spring-boot-up-jetty
+ spring-boot-starter-jetty
${spring.boot.version}
org.springframework.boot
- spring-boot-up-data-jpa
+ spring-boot-starter-data-jpa
${spring.boot.version}
org.springframework.boot
- spring-boot-up-batch
+ spring-boot-starter-batch
${spring.boot.version}
org.springframework.boot
- spring-boot-up-integration
+ spring-boot-starter-integration
${spring.boot.version}
org.springframework.boot
- spring-boot-up-security
+ spring-boot-starter-security
${spring.boot.version}
diff --git a/spring-boot-ups/spring-boot-up-security/pom.xml b/spring-boot-starters/spring-boot-starter-security/pom.xml
similarity index 85%
rename from spring-boot-ups/spring-boot-up-security/pom.xml
rename to spring-boot-starters/spring-boot-starter-security/pom.xml
index 74099ce1f6..201bf3b3e7 100644
--- a/spring-boot-ups/spring-boot-up-security/pom.xml
+++ b/spring-boot-starters/spring-boot-starter-security/pom.xml
@@ -4,10 +4,10 @@
4.0.0
org.springframework.boot
- spring-boot-ups
+ spring-boot-starters
0.5.0.BUILD-SNAPSHOT
- spring-boot-up-security
+ spring-boot-starter-security
jar
${basedir}/../..
@@ -15,7 +15,7 @@
${project.groupId}
- spring-boot-up
+ spring-boot-starter
${project.version}
diff --git a/spring-boot-ups/spring-boot-up-tomcat/pom.xml b/spring-boot-starters/spring-boot-starter-tomcat/pom.xml
similarity index 88%
rename from spring-boot-ups/spring-boot-up-tomcat/pom.xml
rename to spring-boot-starters/spring-boot-starter-tomcat/pom.xml
index bed99bc2e0..6113c30699 100644
--- a/spring-boot-ups/spring-boot-up-tomcat/pom.xml
+++ b/spring-boot-starters/spring-boot-starter-tomcat/pom.xml
@@ -4,10 +4,10 @@
4.0.0
org.springframework.boot
- spring-boot-ups
+ spring-boot-starters
0.5.0.BUILD-SNAPSHOT
- spring-boot-up-tomcat
+ spring-boot-starter-tomcat
jar
${basedir}/../..
diff --git a/spring-boot-ups/spring-boot-up-web/pom.xml b/spring-boot-starters/spring-boot-starter-web/pom.xml
similarity index 83%
rename from spring-boot-ups/spring-boot-up-web/pom.xml
rename to spring-boot-starters/spring-boot-starter-web/pom.xml
index 78563f85c9..c1dd6be9de 100644
--- a/spring-boot-ups/spring-boot-up-web/pom.xml
+++ b/spring-boot-starters/spring-boot-starter-web/pom.xml
@@ -4,10 +4,10 @@
4.0.0
org.springframework.boot
- spring-boot-ups
+ spring-boot-starters
0.5.0.BUILD-SNAPSHOT
- spring-boot-up-web
+ spring-boot-starter-web
jar
${basedir}/../..
@@ -15,12 +15,12 @@
${project.groupId}
- spring-boot-up
+ spring-boot-starter
${project.version}
${project.groupId}
- spring-boot-up-tomcat
+ spring-boot-starter-tomcat
${project.version}
diff --git a/spring-boot-ups/spring-boot-up/pom.xml b/spring-boot-starters/spring-boot-starter/pom.xml
similarity index 86%
rename from spring-boot-ups/spring-boot-up/pom.xml
rename to spring-boot-starters/spring-boot-starter/pom.xml
index ea9c60a05d..28491768d9 100644
--- a/spring-boot-ups/spring-boot-up/pom.xml
+++ b/spring-boot-starters/spring-boot-starter/pom.xml
@@ -4,10 +4,10 @@
4.0.0
org.springframework.boot
- spring-boot-ups
+ spring-boot-starters
0.5.0.BUILD-SNAPSHOT
- spring-boot-up
+ spring-boot-starter
jar
${basedir}/../..
@@ -25,7 +25,7 @@
${project.groupId}
- spring-boot-up-logging
+ spring-boot-starter-logging
${project.version}
diff --git a/spring-boot-ups/src/main/parent/pom.xml b/spring-boot-starters/src/main/parent/pom.xml
similarity index 94%
rename from spring-boot-ups/src/main/parent/pom.xml
rename to spring-boot-starters/src/main/parent/pom.xml
index b21e77ff62..168facc36f 100644
--- a/spring-boot-ups/src/main/parent/pom.xml
+++ b/spring-boot-starters/src/main/parent/pom.xml
@@ -6,7 +6,7 @@ This POM file that can be used as a parent for your own builds. It provides gene
useful dependencies and plugins.
NOTE: If you are editing a local checkout of this file, be sure to modify
-'spring-boot-ups/src/main/parent/pom.xml'.
+'spring-boot-starters/src/main/parent/pom.xml'.
-->
@@ -18,7 +18,7 @@ NOTE: If you are editing a local checkout of this file, be sure to modify
org.springframework.boot
- spring-boot-up-parent
+ spring-boot-starter-parent
0.5.0.BUILD-SNAPSHOT
pom
@@ -56,47 +56,47 @@ NOTE: If you are editing a local checkout of this file, be sure to modify
org.springframework.boot
- spring-boot-up
+ spring-boot-starter
${spring.boot.version}
org.springframework.boot
- spring-boot-up-ops
+ spring-boot-starter-ops
${spring.boot.version}
org.springframework.boot
- spring-boot-up-web
+ spring-boot-starter-web
${spring.boot.version}
org.springframework.boot
- spring-boot-up-tomcat
+ spring-boot-starter-tomcat
${spring.boot.version}
org.springframework.boot
- spring-boot-up-jetty
+ spring-boot-starter-jetty
${spring.boot.version}
org.springframework.boot
- spring-boot-up-data-jpa
+ spring-boot-starter-data-jpa
${spring.boot.version}
org.springframework.boot
- spring-boot-up-batch
+ spring-boot-starter-batch
${spring.boot.version}
org.springframework.boot
- spring-boot-up-integration
+ spring-boot-starter-integration
${spring.boot.version}
org.springframework.boot
- spring-boot-up-security
+ spring-boot-starter-security
${spring.boot.version}