mirror of https://github.com/apache/maven.git
[MNG-6171] always show WARNING about usage of a non threadsafe plugin
This commit is contained in:
parent
f1cc1d4e5a
commit
3982c195e9
|
@ -101,7 +101,7 @@ public class BuilderCommon
|
||||||
if ( session.getRequest().getDegreeOfConcurrency() > 1 )
|
if ( session.getRequest().getDegreeOfConcurrency() > 1 )
|
||||||
{
|
{
|
||||||
final Set<Plugin> unsafePlugins = executionPlan.getNonThreadSafePlugins();
|
final Set<Plugin> unsafePlugins = executionPlan.getNonThreadSafePlugins();
|
||||||
if ( !unsafePlugins.isEmpty() && logger.isDebugEnabled() )
|
if ( !unsafePlugins.isEmpty() )
|
||||||
{
|
{
|
||||||
logger.warn( "*****************************************************************" );
|
logger.warn( "*****************************************************************" );
|
||||||
logger.warn( "* Your build is requesting parallel execution, but project *" );
|
logger.warn( "* Your build is requesting parallel execution, but project *" );
|
||||||
|
|
Loading…
Reference in New Issue