This message was deleted.
# dependency-management
s
This message was deleted.
c
where are you seeing this being expanded to a raw string?
m
Here’s a log with example
Copy code
[versions]
kotlin = { strictly = "[1.6.0, 1.6.10, 1.6.20, 1.6.21[", prefer="1.6.21" }

[libraries]
kotlin-std-lib = { group = "org.jetbrains.kotlin", name = "kotlin-stdlib", version.ref = "kotlin" }
Copy code
FAILURE: Build failed with an exception.

* What went wrong:
A problem occurred configuring root project 'Venmo Platform'.
> Could not resolve all files for configuration ':classpath'.
   > Could not resolve org.jetbrains.kotlin:kotlin-gradle-plugin:[1.6.0, 1.6.10, 1.6.20, 1.6.21[.
     Required by:
         project :
      > Could not resolve org.jetbrains.kotlin:kotlin-gradle-plugin:[1.6.0, 1.6.10, 1.6.20, 1.6.21[.
t
AFAICT,
[1.6.0, 1.6.10, 1.6.20, 1.6.21[
is not a valid notation: a range can only give a lower and upper bound.
m
OH! Well that’s good to know, let me give that a shot 🙇
t
(also, btw, you'd be excluding 1.6.21 but then prefer it)
c
if the intention is for 1.6.x:
[1.6.0,1.7[
(optionally with a preference for 1.6.21).
m
thank y’all so much, I figured I was messing something up 🙇