diff --git a/pom.xml b/pom.xml
index 4b408ab8d9..41d541836b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -320,6 +320,11 @@
spring-aop
${dependency.springframework.version}
+
+ org.springframework
+ spring-beans
+ ${dependency.springframework.version}
+
org.springframework
spring-expression
diff --git a/spring-bootstrap-applications/pom.xml b/spring-bootstrap-applications/pom.xml
index ef63a878ad..9d2626d38f 100644
--- a/spring-bootstrap-applications/pom.xml
+++ b/spring-bootstrap-applications/pom.xml
@@ -37,9 +37,29 @@
spring-bootstrap-web-application
${spring.bootstrap.version}
+
+ org.springframework.bootstrap
+ spring-bootstrap-jpa-application
+ ${spring.bootstrap.version}
+
+
+ org.springframework.bootstrap
+ spring-bootstrap-batch-application
+ ${spring.bootstrap.version}
+
+
+ org.springframework.bootstrap
+ spring-bootstrap-integration-application
+ ${spring.bootstrap.version}
+
+
+ org.springframework
+ spring-test
+ test
+
junit
junit
@@ -59,6 +79,13 @@
+
+ org.codehaus.mojo
+ exec-maven-plugin
+
+ ${start-class}
+
+
org.apache.maven.plugins
maven-shade-plugin
diff --git a/spring-bootstrap-applications/spring-bootstrap-application/pom.xml b/spring-bootstrap-applications/spring-bootstrap-application/pom.xml
index 4b3f15c92e..ded6613357 100644
--- a/spring-bootstrap-applications/spring-bootstrap-application/pom.xml
+++ b/spring-bootstrap-applications/spring-bootstrap-application/pom.xml
@@ -19,6 +19,27 @@
${project.version}
runtime
+
+ org.springframework
+ spring-core
+
+
+ org.springframework
+ spring-beans
+
+
+ org.springframework
+ spring-context
+
+
+ org.springframework
+ spring-expression
+
+
+ org.springframework
+ spring-aop
+ true
+
org.slf4j
slf4j-jdk14
diff --git a/spring-bootstrap-service/README.md b/spring-bootstrap-service/README.md
index 4f42065e87..539044abc9 100644
--- a/spring-bootstrap-service/README.md
+++ b/spring-bootstrap-service/README.md
@@ -159,7 +159,7 @@ which are more convenient at development time. Here are a few:
1. Use the Maven exec plugin, e.g.
- $ mvn exec:java -Dexec.mainClass=com.mycompany.sample.SampleController
+ $ mvn exec:java
2. Run directly in your IDE, e.g. Eclipse or IDEA let you right click
on a class and run it.