Skip to content

pkdevboxy/m2e-apt

 
 

Repository files navigation

Maven integration with Eclipse JDT Annotation Processor Toolkit.

Build Status

m2e-apt aims at providing automatic Annotation Processing configuration in Eclipse based on your project's pom.xml and its classpath dependencies (Requires Java >= 1.6).

Due to some rogue annotation processors at large, we decided to disable automatic annotation processing by default. By default, your manual settings for Eclipse JDT APT apply.

Go to Window > Preferences > Maven > Annotation Processing or right-click on your project Properties > Maven > Annotation Processing to select the Annotation Processing strategy of your choice.

m2e-apt supports both Annotation Processing set on the maven-compiler-plugin or the maven-processor-plugin (the latter takes precedence over the former).

When Annotation Processing is managed by Eclipse JDT APT, any change in your source classes triggers incremental processing automatically. The downside of using JDT APT is, there's no separation between main and test classes (the way maven-processor-plugin handles them). To mitigate that limitation, you can change the workspace or project preferences to delegate annotation processing to maven, instead of JDT APT. This will result in slower incremental builds (all classes will be processed) but will provide identical results to maven command line builds. Note this only works when using maven-processor-plugin. When annotation processing is driven by maven-compiler-plugin, JDT APT is always used in eclipse.

See this blog post for more informations.

m2e-apt can be installed from :

Please be aware m2e-apt 1.1.0 requires m2e 1.5

About

Maven integration with Eclipse JDT Annotation Processor Toolkit

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 93.2%
  • XSLT 3.8%
  • HTML 2.6%
  • CSS 0.4%