Join Slack
Powered by
you probably want to do `tasks.withType<Test>...
# gradle
o
octylFractal
11/14/2018, 7:46 PM
you probably want to do
tasks.withType<Test>().named("test").configure
instead of
tasks.withType<Test>
-- the former selects only ":test", but the latter selects all
Test
tasks currently available
Open in Slack
Previous
Next