Don't substitute application-services packages which are not part of the megazord

nightly-build-test
Thom Chiovoloni 5 years ago committed by Grisha Kruglov
parent c17d024452
commit 4d82c29743

@ -455,7 +455,8 @@ afterEvaluate {
}
}
// Check whether it was already megazorded.
if (! dependency.requested.name.endsWith("-withoutLib")) {
// Hack: sync15 is pure kotlin, and thus not part of the megazord.
if (! dependency.requested.name.endsWith("-withoutLib") && dependency.requested.name != "sync15") {
// Use either the -forUnitTests megazord, or the default one.
def substitution
if (dependency.requested.name.endsWith("-forUnitTests")) {

Loading…
Cancel
Save