From 266af04bb65e5d554502982fe5e4cb252a312d18 Mon Sep 17 00:00:00 2001 From: Gary Russell Date: Mon, 17 Nov 2014 14:20:07 -0500 Subject: [PATCH] Add BF Required to Test Builds Previously, the environment variable that ensures all message creators have a `BeanFactory` required setting the `SI_FATAL_WHEN_NO_BEANFACTORY` environment variable to `true`. Add this variable to `build.gradle`, enforcing the test for all builds. --- build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.gradle b/build.gradle index d0795e09ba..68d009a6b3 100644 --- a/build.gradle +++ b/build.gradle @@ -210,6 +210,8 @@ subprojects { subproject -> if (name ==~ /(springIo.*)|(testAll)/) { systemProperty 'RUN_LONG_INTEGRATION_TESTS', 'true' } + + environment 'SI_FATAL_WHEN_NO_BEANFACTORY', 'true' } task sourcesJar(type: Jar) {