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

pull/600/head
Thom Chiovoloni 5 years ago committed by Grisha Kruglov
parent 11baba71dd
commit 84feb0bb79

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