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.
This commit is contained in:
Gary Russell
2014-11-17 14:20:07 -05:00
parent ab522557c1
commit 266af04bb6

View File

@@ -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) {