I've checked the docs: https://spekframework.org/migration/#maven-coordinates
I wanted to try out version 2.x.x, so I added in build.gradle:
testImplementation ("org.spekframework.spek2:spek-dsl-jvm:2.0.0")
testRuntimeOnly ('org.spekframework.spek2:spek-runner-junit5')
But Gradle is unable to find that 2.x.x library in Maven Central: https://search.maven.org/search?q=spek-dsl-jvm
What should I do? Is there a special repo?
You should add the following maven repo to your build file:
Then for the dependencies:
You could also checkout https://github.com/spekframework/spek-multiplatform-example for more info.