Kelvin Chung
06/11/2024, 5:16 PMincludeBuild("myPlugin")
And a plain old script:
buildscript {
dependencies {
classpath("myPackage:myPlugin") // included build 'myPlugin'
}
}
Would dependency substitution work in this case, or will Gradle barf when the script is loaded because it can't find the included build?Vampire
06/11/2024, 5:45 PMKelvin Chung
06/11/2024, 5:46 PMVampire
06/11/2024, 8:15 PM