2

Does the maven-aspectj-plugin have an option to specify ajc's option -xmlConfigured?

If not, what's the common practice for compiling aspect codes with most recent version of ajc using maven?

kriegaex
  • 63,017
  • 15
  • 111
  • 202
Candy Chiu
  • 6,579
  • 9
  • 48
  • 69

2 Answers2

2

Does the maven-aspectj-plugin have an option to specify ajc's option -xmlConfigured?

AFAIK, the maven-aspectj-plugin doesn't have such an option, the -xmlConfigured is just too new.

If not, what's the common practice for compiling aspect codes with most recent version of ajc using maven?

I'm pretty sure patch are appreciated and welcome :)

Pascal Thivent
  • 562,542
  • 136
  • 1,062
  • 1,124
0

Nowadays AspectJ Maven has the parameter: http://www.mojohaus.org/aspectj-maven-plugin/compile-mojo.html#xmlConfigured

kriegaex
  • 63,017
  • 15
  • 111
  • 202