Hi Nick, Thanks for your reply.
I adjusted the maven goals/options to indeed use "mvn clean instal ....". The result of this change was ok. All projects are now compiled even if there are no changes. However no none of the JUnit tests are being executed. Normally about 400 JUnit tests are being executed, but because of the clean command nothing is being executed now. Do you know what I need to change to make sure the Unit tests are executed again. See attached pom file. At line 457 the call for the JUnit tests is described. Thanks. Hugo http://www.nabble.com/file/p24302688/pom.xml pom.xml Nick Stolwijk-4 wrote: > > Run a clean before your compile, thus "mvn clean compile" or "mvn > clean install". This will clean out the target directory of each > project before compiling. The skipped java files is not really a maven > issue, it is the java compiler which detect which files are changed. > > Hth, > > Nick Stolwijk > ~Java Developer~ > > -- View this message in context: http://www.nabble.com/How-force-Maven-to-compile-each-project-module-even-if-there-are-no-changes-tp24286239p24302688.html Sent from the Maven - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
