From 6d32f4e7ac931b90533de859efd68876357d3c96 Mon Sep 17 00:00:00 2001 From: I Stevenson Date: Mon, 19 Mar 2018 16:21:20 +1100 Subject: [PATCH] Specify project name in settings.gradle This way we don't have to clone into a 'spring-security-saml' directory if we wish to build and install. As this way we overrid the project name via `rootProject.name`. Later if we want to change this to a multi-project build - i.e. with an app to use for quick testing (like in spring security core) - then we can change to something like: findProject(':plugin').name = 'spring-security-saml' --- settings.gradle | 1 + 1 file changed, 1 insertion(+) create mode 100644 settings.gradle diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..22d720e --- /dev/null +++ b/settings.gradle @@ -0,0 +1 @@ +rootProject.name = 'spring-security-saml'