Can't use annotation processing in a maven project

you can :smile:

  • place your assets into src/main/resources
  • or use Build Helper Maven Plugin – build-helper:add-resource to add assets folder into the list of resources folder.
  • use a task/plugin that will copy/transform files from your assets folder (filtered) into the target/main/classes folder (runtime only asset).
1 Like

It worked :slight_smile: Thanks!