Closed sdeleuze closed 5 years ago
I can confirm that this is needed.
See https://github.com/junit-team/junit5/commit/228002cbb8ec31b43ef39823428ddad43d449824 for details.
Thanks for the report @sdeleuze! Would you be interested in submitting a PR for this?
Gradle Kotlin DSL is more statically typed, when using it it seems it is not possible to update the
source
property ofNoHttpExtension
without an explicit cast like(source as ConfigurableFileTree).exclude()
. I think this property should be exposed with typeConfigurableFileTree
(it seems to use this type internally) instead ofFileTree
to allow such common use case.