Hey I was wondering if it was possible to depend on the src/ directory in a gradle.kts build?
I made a module so I could quickly test some stuff but I need to import my library that's in the src/ folder, I'm unsure of how to do that via
implementation(project("X"))
, is it possible to import by folder? Thank you in advance.
🚫 3
n
no
06/28/2023, 2:02 PM
This sounds like a circular dependency
t
Tech
06/28/2023, 2:03 PM
Most likely is, I mainly just needed it to quickly test stuff without having to continuously update maven local with latest changes but that's just what I ended up doing to save time.