jaguililla
06/09/2020, 5:14 PM.gradle.kts
scripts with apply(from = "<file>.gradle.kts")
doesn't work for me (Gradle 6.5). However, errors happens only when the script relies on a plugin (it seems to work fine if no extra plugin is required). If someone has had the same issue I would appreciate your comments. Thanks!octylFractal
06/09/2020, 5:16 PMCasey Brooks
06/09/2020, 5:18 PMapply(from = ...)
syntax and they will work fine, but you won’t be able to access anything from outside that script. Any plugins, etc. that are applied won’t be available to the main script that’s including it. Precompiled plugins are the way to gojaguililla
06/09/2020, 5:44 PM.gradle
ones for a while... Thanks again for the suggestion, I will migrate to precompiled plugins eventuallyoctylFractal
06/09/2020, 5:45 PMjaguililla
06/09/2020, 6:09 PMapply(from = "<https://github.com/.../helper.gradle>")
from other projects (so I don't copy them locally)eskatos
06/10/2020, 6:29 AMjaguililla
06/10/2020, 7:04 AM