How to encourage the development of incremental versions of annotation processors?

Apparently neither of these two annotation processors registers themselves as “incremental” with gradle

annotationProcessor “org.springframework.boot:spring-boot-configuration-processor:2.1.4.RELEASE”
annotationProcessor “org.hibernate:hibernate-jpamodelgen:5.4.2.Final”

This pretty much eliminates the use of incremental compile with spring / hibernate applications, which is probably a lot of use cases.

The value of incremental compile is very high when in development as it has a high impact on the build/debug cycle time.

Are there any processes in place that might help to prioritize the support of incremental with these annotationProcessors?

TL;DR: Lobby the maintainer of your favorite annotation processor to add incremental compilation support.