Aditya
06/30/2020, 7:55 PMAditya
06/30/2020, 7:56 PMdependencies {
implementation("ch.qos.logback:logback-classic:$logback_version")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:$jackson_version")
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version")
implementation("org.spekframework.spek2:spek-dsl-js:$spek_version")
testImplementation("org.amshove.kluent:kluent:$kluent_version")
testImplementation("org.spekframework.spek2:spek-dsl-jvm:$spek_version")
testRuntimeOnly("org.spekframework.spek2:spek-runner-junit5:$spek_version")
// spek requires kotlin-reflect, can be omitted if already in the classpath
testRuntimeOnly("org.jetbrains.kotlin:kotlin-reflect:$kotlin_version")
}
tasks.withType<Test> {
useJUnitPlatform {
includeEngines("spek2")
}
}
Aditya
06/30/2020, 7:57 PMAditya
06/30/2020, 7:58 PMAditya
06/30/2020, 7:59 PMAditya
06/30/2020, 9:59 PMspec-dsl-jvm-2.0.0 jar
was still in the cache and causing the issue. the spec framework plugin is working fine after force cleanraniejade
07/02/2020, 9:02 AM