mirror of https://github.com/apache/maven.git
o committing work from Trygve because he can't yet commit himself.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162684 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fe5c4741ab
commit
03267ea4be
|
@ -1,4 +1,3 @@
|
|||
|
||||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.FileWriter;
|
||||
|
@ -493,12 +492,12 @@ public class Bootstrapper
|
|||
public void endElement( String uri, String localName, String rawName )
|
||||
throws SAXException
|
||||
{
|
||||
if ( rawName.equals( "parent" ) )
|
||||
// support both v3 <extend> and v4 <parent>
|
||||
if ( rawName.equals( "extend" ) || rawName.equals( "parent" ) )
|
||||
{
|
||||
File f;
|
||||
|
||||
// support both v3 <extend> and v4 <parent>
|
||||
if( getBodyText() == null )
|
||||
if( rawName.equals( "extend" ) )
|
||||
{
|
||||
String extend = interpolate( getBodyText(), properties );
|
||||
|
||||
|
|
Loading…
Reference in New Issue