Move intiial environment checks to buildSrc so that they happen before any other script has a chance to evaluate.

This commit is contained in:
Dawid Weiss 2020-01-03 14:46:29 +01:00
parent 6d1e34d0cc
commit 363f2e3654
2 changed files with 3 additions and 3 deletions

View File

@ -11,9 +11,6 @@ allprojects {
version = "9.0.0-SNAPSHOT"
}
// Make sure the build environment is consistent.
apply from: file('gradle/validation/check-environment.gradle')
// Include smaller chunks configuring dedicated build areas.
// Some of these intersect or add additional functionality.
// The order of inclusion of these files shouldn't matter (but may

3
buildSrc/build.gradle Normal file
View File

@ -0,0 +1,3 @@
// Make sure the build environment is consistent.
apply from: file('../gradle/validation/check-environment.gradle')