diff --git a/docs/src/main/asciidoc/gradle-tooling.adoc b/docs/src/main/asciidoc/gradle-tooling.adoc index 7f3df48660bdd..889c48fdfe6cd 100644 --- a/docs/src/main/asciidoc/gradle-tooling.adoc +++ b/docs/src/main/asciidoc/gradle-tooling.adoc @@ -132,6 +132,7 @@ Quarkus uses Junit5 and to enable it in Gradle we need to add a section to our b ---- test { useJUnitPlatform() + exclude '**/Native*' } ---- @@ -141,6 +142,7 @@ Using the Kotlin DSL, add: ---- tasks.test { useJUnitPlatform() + exclude("**/Native*") } ---- diff --git a/docs/src/main/asciidoc/kotlin.adoc b/docs/src/main/asciidoc/kotlin.adoc index 206395eddfa66..1972d14344312 100644 --- a/docs/src/main/asciidoc/kotlin.adoc +++ b/docs/src/main/asciidoc/kotlin.adoc @@ -282,7 +282,7 @@ tasks { tasks.test { useJUnitPlatform() - exclude '**/Native*' + exclude("**/Native*") } allOpen { // <5>