Louis CAD
Louis CAD
Implementation should be quite easy, setting the version happens in a single place, where we have the `withDependencies { … }` block. However, there are some design decisions to tackle...
I started implementing option4, but there's something I'm not super happy with. While it reads okay(ish?) for `strictly`: ```kts dependencies { api(Something.whatever) { version { strictly() } } } ```...
For option 1, where we would use variants of the version placeholder, I have been thinking that we could use `_` for `require`, as it's already the case, and use...
I just discovered that option 5 cannot work. However, here's a variant that can work when coupled with option 1: ```kts dependencies { // This is option 1 api(Something.whatever.strictVersion()) api(Something.whatever.preferDeclaredVersion())...
I was considering implementing option 1, but while Gradle let us do what we want with `_!` as a version placeholder, when we put `_!!`, it eats both exclamation marks…...
It turns out using `_?` and `_!` can work, so I'll probably end up using those. That said, I'm concerned about how these fit in regarding version ranges, like when...
Can you confirm the issue is resolved in the version 0.10.0?
@aaajanp Can you show how the repository is defined and in which file?
Does it work if you use `+` as a version instead of `_`?
I was asking to debug, not suggesting it as a solution. Thanks for your answer.