Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an APT processor that display warnings on some conditions. My project is using a maven1 build calling ant:apt

How to make maven fails when warning conditions are met ? (the processor can be modified)

Thanks.

share|improve this question

1 Answer

up vote 1 down vote accepted

The annotation processor needs to create a message of Kind ERROR. This results in a Compilation Failure, which in turn will abort the ant build (unless the failonerror parameter of the ant javac task is set to false). (And this in turn should fail the maven task)

processingEnvironment
    .getMessager()
    .printMessage(Kind.ERROR, "your error message here");

(Acquire the ProcessingEnvironment through the processor's init method)

Reference:

share|improve this answer
Thanks for having answering this rather old still opened question ! – Guillaume Nov 2 '10 at 11:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.