default value

git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1637765 13f79535-47bb-0310-9956-ffa450edef68
master
Herve Boutemy 2014-11-09 23:58:49 +00:00
parent 58a8f57588
commit 311aa09218
1 changed files with 3 additions and 4 deletions

View File

@ -695,7 +695,9 @@ public class PluginReport
return null;
}
String jdk = null;
// default value
String jdk = props.getProperty( "maven.compiler.target" );
String backupJdk = null;
for ( Map.Entry<String, Object> entry : pluginsAsMap.entrySet() )
{
@ -707,9 +709,6 @@ public class PluginReport
Object value = entry.getValue();
Xpp3Dom pluginConf = null;
// default value
jdk = props.getProperty( "maven.compiler.target" );
backupJdk = "Default version for maven-compiler-plugin";
if ( value instanceof Plugin )
{