如何设置 Spek 框架
How to setup Spek Framework
我查看了文档:
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
我该怎么办?有没有特别的回购协议?
尝试配置您的存储库:
maven { url 'https://oss.jfrog.org/artifactory/libs-snapshot'}
你的依赖应该如下:
dependency "org.spekframework.spek2:spek-dsl-jvm:$spekVersion"
其中 spekVersion = "2.0.0-SNAPSHOT"
您应该将以下 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 了解更多信息。
我查看了文档: 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
我该怎么办?有没有特别的回购协议?
尝试配置您的存储库:
maven { url 'https://oss.jfrog.org/artifactory/libs-snapshot'}
你的依赖应该如下:
dependency "org.spekframework.spek2:spek-dsl-jvm:$spekVersion"
其中 spekVersion = "2.0.0-SNAPSHOT"
您应该将以下 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 了解更多信息。