mirror of https://github.com/apache/lucene.git
Move intiial environment checks to buildSrc so that they happen before any other script has a chance to evaluate.
This commit is contained in:
parent
6d1e34d0cc
commit
363f2e3654
|
@ -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
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
// Make sure the build environment is consistent.
|
||||
apply from: file('../gradle/validation/check-environment.gradle')
|
Loading…
Reference in New Issue