I know this project is deprecated. Is there any chance we can add a config or tweak the generated code to work on Java 9+?
Basically:
import javax.annotion.Generated;
Needs to become:
import javax.annotion.processing.Generated;
In the generated code. Then it should work for Java 9+, but would break Java 8-. Need a way to check which jdk is being used.
I know this project is deprecated. Is there any chance we can add a config or tweak the generated code to work on Java 9+?
Basically:
import javax.annotion.Generated;Needs to become:
import javax.annotion.processing.Generated;In the generated code. Then it should work for Java 9+, but would break Java 8-. Need a way to check which jdk is being used.