Am I missing something or does the `dependencies` ...
# community-support
b
Am I missing something or does the
dependencies
blog inside the test suite blog not support supplying version catalog dependencies?
It looks like this is not even assigned a milestone. How can it be that two relatively new feature do not work together and there's isn't even a timeline on a fix?
n
It does allow it, we use it all the time. When it comes to dependency bundles from the version catalog, there is indeed a mismatch in syntax:
Copy code
// regular dependencies
implementation(libs.bundles.myBundle)
// test suite dependencies
implementation.bundle(libs.bundles.myBundle)
☝️ 2
👍 1
c
also, if you need to rely on project, it's e.g
implementation(project())