Fix tests

This commit is contained in:
Him188 2020-11-09 09:02:16 +08:00
parent 7182a500f9
commit 289a82189b
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ fun DependencyHandlerScope.ktor(id: String, version: String = Versions.ktor) = "
@Suppress("unused")
fun DependencyHandler.compileAndTestRuntime(any: Any) {
add("compileOnly", any)
add("testRuntimeOnly", any)
add("testImplementation", any)
}
fun DependencyHandler.smartApi(

View File

@ -11,5 +11,5 @@ package net.mamoe.mirai.console.gradle
internal object VersionConstants {
const val CONSOLE_VERSION = "1.0-RC-1" // value is written here automatically during build
const val CORE_VERSION = "1.3.2" // value is written here automatically during build
const val CORE_VERSION = "1.3.3" // value is written here automatically during build
}