How to fail maven build only at end? -


i have maven build has 2 modules. both modules contain failing tests. module b has dependency on module a.

i run build , let fail @ end.

the test error in module unfortunately mark module unstable , cause building of module b skipped:

[info] skipping testmaven b [info] project has been banned build due previous failures. 

is there way continue tests let maven build fail @ end? tried -fae option not change behaviour.

i avoid using -dmaven.test.failure.ignore=true if possible.


Comments

Popular posts from this blog

c# - Update a combobox from a presenter (MVP) -

How to understand 2 main() functions after using uftrace to profile the C++ program? -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -