This repository was archived by the owner on Feb 26, 2023. It is now read-only.

Description
It would be great if classes from dependencies could be targeted when creating builders, perhaps with an additional annotation like
@BuilderFor(SomeJavaOrKotlinBean::class.java)
class DummyPlaceholder
Some reasons for this:
- In some cases builders are needed for 3rd party classes
- The developer might actually control the sourcecode but other restrictions or requirements may apply. E.g. in Corda apps the state JARs where the POJOs are located needs to be as thin as possible, so other component types are preferably located in separate artefacts
I suppose i'm asking if a PR would be considered?