Hello, i am new to gradle, finally thought i would...
# kotlin-dsl
f
Hello, i am new to gradle, finally thought i would try it out after years of maven, i am having a go at configuring subprojects with some tasks,
Copy code
tasks.withType<Test> {
    useJUnitPlatform()
    testLogging {
      events = setOf(TestLogEvent.PASSED, TestLogEvent.SKIPPED, TestLogEvent.FAILED)
    }
  }