31

我想将内置的 JUnit 5 与 Gradle Kotlin DSL 一起使用,因为在构建期间我收到以下警告:

WARNING: The junit-platform-gradle-plugin is deprecated and will be discontinued in JUnit Platform 1.3.
Please use Gradle's native support for running tests on the JUnit Platform (requires Gradle 4.6 or higher):
https://junit.org/junit5/docs/current/user-guide/#running-tests-build-gradle

那个链接告诉我把

test {
    useJUnitPlatform()
}

在我的build.gradle,但语法是build.gradle.kts什么?

我当前的构建文件是

import org.gradle.api.plugins.ExtensionAware

import org.junit.platform.gradle.plugin.FiltersExtension
import org.junit.platform.gradle.plugin.EnginesExtension
import org.junit.platform.gradle.plugin.JUnitPlatformExtension

group = "com.example"
version = "0.0"

// JUnit 5
buildscript {
    repositories {
        mavenCentral()
        jcenter()
    }
    dependencies {
        classpath("org.junit.platform:junit-platform-gradle-plugin:1.2.0")
    }
}

apply {
    plugin("org.junit.platform.gradle.plugin")
}

// Kotlin configuration.
plugins {

    val kotlinVersion = "1.2.41"

    application
    kotlin("jvm") version kotlinVersion
    java // Required by at least JUnit.

    // Plugin which checks for dependency updates with help/dependencyUpdates task.
    id("com.github.ben-manes.versions") version "0.17.0"

    // Plugin which can update Gradle dependencies, use help/useLatestVersions
    id("se.patrikerdes.use-latest-versions") version "0.2.1"

}

application {
    mainClassName = "com.example.HelloWorld"
}

dependencies {
    compile(kotlin("stdlib"))
    // To "prevent strange errors".
    compile(kotlin("reflect"))
    // Kotlin reflection.
    compile(kotlin("test"))
    compile(kotlin("test-junit"))

    // JUnit 5
    testImplementation("org.junit.jupiter:junit-jupiter-api:5.2.0")
    testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.2.0")
    testRuntime("org.junit.platform:junit-platform-console:1.2.0")

    // Kotlintest
    testCompile("io.kotlintest:kotlintest-core:3.1.0-RC2")
    testCompile("io.kotlintest:kotlintest-assertions:3.1.0-RC2")
    testCompile("io.kotlintest:kotlintest-runner-junit5:3.1.0-RC2")

}

repositories {
    mavenCentral()
    mavenLocal()
    jcenter()
}

(以下是一些废话,因为这个问题“主要包含代码”)。我试图找到有关如何在 Kotlin DSL 中自定义任务的文档,但我找不到任何文档。在普通的 Groovy 中,您可以只编写任务的名称,然后更改块中的内容,但 Kotlin DSL 无法识别任务本身,未解析的引用。

此外,这个问题是相关的,但要求创建任务,而不是自定义现有任务:How do I overwrite a task in gradle kotlin-dsl

这是普通 Gradle 的解决方案。

4

2 回答 2

42

[编辑 2019 年 4 月] 正如Pedro 发现的那样,在我提出这个问题三个月后,Gradle 实际上为 Kotlin DSL 创建了一个用户指南,可以在https://docs.gradle.org/current/userguide/kotlin_dsl.html访问

他们还在https://guides.gradle.org/migrating-build-logic-from-groovy-to-kotlin/添加了从 Groovy 到 Kotlin 的迁移指南

回答:

您要求的语法是

tasks.test {
    // Use the built-in JUnit support of Gradle.
    useJUnitPlatform()
}

我从 Kotlin DSL GitHub 的这个示例文件中找到了它,或者你可以使用

tasks.withType<Test> {
    useJUnitPlatform()
}

在这个答案写完几个月后创建的官方用户指南中使用了它(感谢佩德罗的回答注意到这一点)。

但无论如何,您实际上仍在使用该buildscript块,它本身有点被弃用,请改用新的pluginsDSL ( docs )。新build.gradle.kts成为

group = "com.example"
version = "0.0"

plugins {

    val kotlinVersion = "1.2.41"

    application
    kotlin("jvm") version kotlinVersion
    java // Required by at least JUnit.

    // Plugin which checks for dependency updates with help/dependencyUpdates task.
    id("com.github.ben-manes.versions") version "0.17.0"

    // Plugin which can update Gradle dependencies, use help/useLatestVersions
    id("se.patrikerdes.use-latest-versions") version "0.2.1"
}

application {
    mainClassName = "com.example.HelloWorld"
}

dependencies {
    compile(kotlin("stdlib"))
    // To "prevent strange errors".
    compile(kotlin("reflect"))
    // Kotlin reflection.
    compile(kotlin("test"))
    compile(kotlin("test-junit"))

    // JUnit 5
    testImplementation("org.junit.jupiter:junit-jupiter-api:5.2.0")
    testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.2.0")
    testRuntime("org.junit.platform:junit-platform-console:1.2.0")

    // Kotlintest
    testCompile("io.kotlintest:kotlintest-core:3.1.0-RC2")
    testCompile("io.kotlintest:kotlintest-assertions:3.1.0-RC2")
    testCompile("io.kotlintest:kotlintest-runner-junit5:3.1.0-RC2")

}

repositories {
    mavenCentral()
    mavenLocal()
    jcenter()
}

tasks {
    // Use the native JUnit support of Gradle.
    "test"(Test::class) {
        useJUnitPlatform()
    }
}

(由于 Gradle Kotlin DSL 除了GitHub 上的一些(未记录的)示例文件之外几乎没有任何文档,我在这里记录了一些常见的示例。)

GitHub上的完整示例项目,自我推广...)

于 2018-05-02T06:54:37.783 回答
17

除了接受的答案之外,还可以使用类型化的任务配置,例如:

tasks.withType<Test> {
    useJUnitPlatform()
}

更新:

Gradle 文档供参考特别是示例 19,它具有:

tasks.withType<JavaCompile> {
    options.isWarnings = true
    // ...
}
于 2019-03-28T20:45:49.823 回答