mirror of https://github.com/apache/maven.git
make debug bootstrap work
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163585 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1cc2abaaa4
commit
e32b20b5cf
|
@ -69,6 +69,11 @@ public class JavacCompiler
|
|||
|
||||
args.add( getClasspathString( config.getClasspathEntries() ) );
|
||||
|
||||
if ( config.isDebug() )
|
||||
{
|
||||
args.add( "-g" );
|
||||
}
|
||||
|
||||
Iterator it = compilerOptions.entrySet().iterator();
|
||||
|
||||
while ( it.hasNext() )
|
||||
|
@ -184,4 +189,4 @@ public class JavacCompiler
|
|||
{
|
||||
return "Sun Javac Compiler";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue