is there a way to get the Test task which correspo...
# multiplatform
j
is there a way to get the Test task which corresponds to the jvm test compilation through the DSL? Or should I do name-based lookkup?
k
type is
org.gradle.api.tasks.testing.Test
hmmm, this works based on @Marc Knaup’s example:
Copy code
jvm {
        testRuns.all {
            executionTask.configure {
                reports.junitXml.isEnabled = true
            }
        }
    }
there we go
j
thank you! that is precisely what i needed.