<@U7F0VKNQ0> you need to type the task and look it...
# gradle
m
@wakingrufus you need to type the task and look it up since static accessors for tasks aren't generated currently. See https://guides.gradle.org/migrating-build-logic-from-groovy-to-kotlin/?_ga=2.110627533.930818286.1532011693-1169330278.1495333666#configuring-tasks Yours would look like
Copy code
tasks.getByName<Test>("test"){
  useJUnitPlatform()
}
w
perfect thank you!