default value
git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1637765 13f79535-47bb-0310-9956-ffa450edef68master
parent
58a8f57588
commit
311aa09218
|
|
@ -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 )
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue