mirror of https://github.com/apache/maven.git
[MNG-4642] Added missing attribute in PDB
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@938480 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1a7361596b
commit
6c35e2d3cf
|
@ -251,6 +251,13 @@ public class PluginDescriptorBuilder
|
|||
mojo.setInheritedByDefault( Boolean.valueOf( inheritedByDefault ).booleanValue() );
|
||||
}
|
||||
|
||||
String threadSafe = c.getChild( "threadSafe" ).getValue();
|
||||
|
||||
if ( threadSafe != null )
|
||||
{
|
||||
mojo.setThreadSafe( Boolean.valueOf( threadSafe ).booleanValue() );
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
// Parameters
|
||||
// ----------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue