If I have a function with default implementation i...
# plugin-development
b
If I have a function with default implementation in my custom type interface that gradle is decorating, can I somehow tell it to exclude said function from decorating to avoid errors like
Copy code
> Could not generate a decorated class for type NpmPackage.
   > Cannot have abstract method myMethodWithDefaultImplementation()
Solved it by converting the type to abstract class. I'd still like to hear about any proper way to achieve the same via interfaces.