is there a reason why `kotest-extensions-spring` i...
# kotest
h
is there a reason why
kotest-extensions-spring
is not released with 4.5.0 in maven-central? https://mvnrepository.com/artifact/io.kotest/kotest-extensions-spring I ran into the problem as I have a group-wide versioning and
kotest-extensions-spring
cannot be found in 4.5.0 😅 Is that a separately released lib?
☑️ 1
w
Yep, extensions are versioned separately starting with 4.5.0: https://kotest.io/docs/changelog.html
So, for example, if you used the Spring extension, you would previously have added
io.kotest:kotest-extensions-spring:4.x.y
to your build. Now you would use
io.kotest.extensions:kotest-extensions-spring:1.x.y
So you want `io.kotest.extensions:kotest-extensions-spring`: https://search.maven.org/search?q=kotest-extensions-spring
h
ah ok, thanks
but just to be clear, the extenstions have all the same version as well? Or will that differ for different extensions
w
I believe it’ll differ for every extension
h
ok thanks 🙂
👍 1