From ca5fd354b64e8b9e1ea81115c07677eec5b41e26 Mon Sep 17 00:00:00 2001 From: Oliver Gierke Date: Wed, 12 Nov 2014 09:39:23 +0100 Subject: [PATCH] #29 - Fixed setup of Spring Boot Maven plugin. Removed the declaration of the Spring Boot Maven plugin in the root POM as it broke the build for package and install goals for projects that don't actually contain a main class but tests only. Declared the plugin at the root POM for Spring Data REST related projects as these are the only ones providing a standalone runnable app. Related pull request: #30. --- pom.xml | 9 --------- rest/pom.xml | 9 +++++++++ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/pom.xml b/pom.xml index 18d88db9..b24f563e 100644 --- a/pom.xml +++ b/pom.xml @@ -71,15 +71,6 @@ - - - - org.springframework.boot - spring-boot-maven-plugin - - - - spring-libs-milestone diff --git a/rest/pom.xml b/rest/pom.xml index 2171e203..62507429 100644 --- a/rest/pom.xml +++ b/rest/pom.xml @@ -32,4 +32,13 @@ + + + + org.springframework.boot + spring-boot-maven-plugin + + + +