[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:
Kristian Rosenvold 2010-04-27 14:46:46 +00:00
parent 1a7361596b
commit 6c35e2d3cf
1 changed files with 7 additions and 0 deletions

View File

@ -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
// ----------------------------------------------------------------------