diff --git a/spring-boot-starters/pom.xml b/spring-boot-starters/pom.xml index e23db8b52cc..a72623787b1 100644 --- a/spring-boot-starters/pom.xml +++ b/spring-boot-starters/pom.xml @@ -26,6 +26,7 @@ spring-boot-starter-actuator spring-boot-starter-parent spring-boot-starter-security + spring-boot-starter-test spring-boot-starter-tomcat spring-boot-starter-web spring-boot-starter-websocket diff --git a/spring-boot-starters/spring-boot-starter-test/.gitignore b/spring-boot-starters/spring-boot-starter-test/.gitignore new file mode 100644 index 00000000000..ea8c4bf7f35 --- /dev/null +++ b/spring-boot-starters/spring-boot-starter-test/.gitignore @@ -0,0 +1 @@ +/target diff --git a/spring-boot-starters/spring-boot-starter-test/pom.xml b/spring-boot-starters/spring-boot-starter-test/pom.xml new file mode 100644 index 00000000000..a473f690a6f --- /dev/null +++ b/spring-boot-starters/spring-boot-starter-test/pom.xml @@ -0,0 +1,44 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starters + 0.5.0.BUILD-SNAPSHOT + + spring-boot-starter-test + jar + + ${basedir}/../.. + + + + ${project.groupId} + spring-boot-starter-logging + ${project.version} + + + junit + junit + + + org.mockito + mockito-core + + + org.hamcrest + hamcrest-library + + + org.springframework + spring-test + + + commons-logging + commons-logging + + + + +