I have a list of dependencies that are located in ...
# community-support
m
I have a list of dependencies that are located in other repos and sometimes that's not what you want when doing some experimentation So far I have been using
includeBuild()
to see changes without publishing. However going through the motion of removing version from version catalog and then putting it back seems like a bad way and there is probably a better one. If anyone knows of a better way please share your expertise, thanks
p
You don’t need to remove the version.
πŸ‘† 2
πŸ‘€ 1
I daily use includedBuild of a published library to experiment with new idea but I all I need to do is adding the line
includeBuild()
πŸ‘† 1
v
This is actually one of the main original use-cases for composite builds. πŸ™‚
m
I think I was always doing this for a few years now because I distinctly remember getting error about different versions on classpath Thank you, I will check it again