我检查了文档: https://spekframework.org/migration/#maven-coordinates
我想试用2.x.x版本,所以我添加了build.gradle
:
testImplementation ("org.spekframework.spek2:spek-dsl-jvm:2.0.0")
testRuntimeOnly ('org.spekframework.spek2:spek-runner-junit5')
但是Gradle在Maven Central中找不到该2.x.x库: https://search.maven.org/search?q=spek-dsl-jvm
我该怎么办?有特殊的仓库吗?
答案 0 :(得分:1)
尝试使用以下方式配置存储库:
maven { url 'https://oss.jfrog.org/artifactory/libs-snapshot'}
您的依赖关系应如下:
dependency "org.spekframework.spek2:spek-dsl-jvm:$spekVersion"
其中spekVersion = "2.0.0-SNAPSHOT"
答案 1 :(得分:0)
您应将以下Maven存储库添加到您的构建文件中:
repositories {
jcenter()
}
然后查看依赖项:
testCompile group: 'org.spekframework.spek2', name: 'spek-dsl-jvm', version: '2.0.0-rc.1'
testCompile group: 'org.spekframework.spek2', name: 'spek-runner-junit5', version: '2.0.0-rc.1'
您也可以结帐https://github.com/spekframework/spek-multiplatform-example以获得更多信息。