From 5ab003d47ebb67f41c07c4b9014e8351903d864b Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Thu, 4 Nov 2010 17:49:32 -0600 Subject: [PATCH] Explictly set root project name in settings.gradle Bamboo CI server checks out into a directory named 'checkout', instead of a directory named 'spring-integration' as would be expected. Root project naming defaults to the name of the containing directory, so it becomes important to be explicit. --- settings.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/settings.gradle b/settings.gradle index cbb72884fa..2a7bda9779 100644 --- a/settings.gradle +++ b/settings.gradle @@ -14,6 +14,8 @@ * limitations under the License. */ +rootProject.name = 'spring-integration' + include 'docs' include 'spring-integration-core' include 'spring-integration-event'