IntelliJ IDEA 2017.3 Help

Annotation Processors

Annotation processing profiles

ItemKeyboard ShortcutDescription
newAlt+InsertClick this button to create a new profile.
deleteAlt+DeleteClick this button to delete the selected profile from the list of existing profiles. All modules, associated with this profile, will be automatically moved to the default profile.
compareNextFileF6Click this button to associate a module with a profile. This button only becomes available, when a module in the list of modules under a certain profile gets the focus.

Annotation processors settings

ItemDescription
Enable annotation processingIf you want annotation processors to be run during compilation, select this checkbox and specify associated options:
  • Obtain processors from project classpath: Select this option, if you want IntelliJ IDEA to obtain the annotation processors from the project classpath. This is useful, for example, if you use a custom annotation processor as part of your project, or if the processor is stored in a .jar file attached to all the corresponding modules as a library.
  • Processor path: Select this option and specify in the field to the right the path to the annotation processor, if it is not desirable to include the processor into the project or project libraries.
  • Store generated sources relative to: Use the fields below to define where the sources, generated by the annotation processors, are stored, and to override the default behaviour for a profile.
    • Module output directory: By default, the sources generated by annotation processors are stored relative to the module output directory.
    • Module content root: Choose this option to override the default behaviour for a profile.

    At a later time, if you want to use the generated classes as your own sources, you can mark the corresponding directories as source roots.

Processor FQ NameSpecify the processor fully qualified name.

Use new (Alt+Insert) or delete (Alt+Delete) to make up the list of annotation processors to be run.

Annotation processor optionsIf necessary, specify the processor run options either as -key=value, or key=value.

Use spaces to separate individual options.

Use new (Alt+Insert) or delete (Alt+Delete) to make up the list of options to be passed to the annotation processors.

Last modified: 6 March 2018

See Also