Re: always compile option for maven-compiler-plugin?

2009-06-11 Thread Lee Meador
Or you could put an antrun task to run in generate-sources that would delete all the class files in target/classes and target/testclasses every time before compiling. (Oh and check my spelling there.) -- Lee On Wed, Jun 10, 2009 at 12:29 PM, Wayne Fay wayne...@gmail.com wrote: anyway to

RE: always compile option for maven-compiler-plugin?

2009-06-11 Thread Martin Gainty
Subject: Re: always compile option for maven-compiler-plugin? From: l...@leemeador.com To: users@maven.apache.org Or you could put an antrun task to run in generate-sources that would delete all the class files in target/classes and target/testclasses every time before compiling. (Oh and check

always compile option for maven-compiler-plugin?

2009-06-10 Thread Martin Gainty
Hi Folks currently using the maven-compiler-plugin d/l from http://maven.apache.org/plugins/maven-compiler-plugin anyway to request maven-compiler-plugin always compile (instead of check source newer than class) ? thanks! Martin Gainty __ Verzicht

Re: always compile option for maven-compiler-plugin?

2009-06-10 Thread Wayne Fay
anyway to request maven-compiler-plugin always compile (instead of check source newer than class) If not, it would be pretty simple to add. Having said that, the recommended approach would be to always use mvn clean ... which will delete the files in /target, thus guaranteeing the always