did the way `configure<>{}` works change rec...
# gradle
b
did the way
configure<>{}
works change recently? this used to work:
Copy code
configure<NamedDomainObjectContainer<ReobfTaskFactory.ReobfTaskWrapper>> {
        create("shadeJar").apply {
            mappingType = ReobfMappingType.SEARGE
        }
    }
but now it needs to be
IReobfuscator
instead of
ReobfTaskFactory.ReobfTaskWrapper
(which is implementation of the
IReobfuscator
interface)