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