diff --git a/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/PluginReport.java b/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/PluginReport.java index 13c63ee..8a085bc 100644 --- a/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/PluginReport.java +++ b/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/PluginReport.java @@ -391,19 +391,15 @@ public class PluginReport sink.tableRow(); tableCell( getBundle( locale ).getString( "report.plugin.systemrequirements.memory" ) ); tableCell( ( StringUtils.isNotEmpty( requirements.getMemory() ) - ? requirements.getMemory() - : getBundle( locale ) - .getString( - "report.plugin.systemrequirements.nominimum" ) ) ); + ? requirements.getMemory() + : getBundle( locale ).getString( "report.plugin.systemrequirements.nominimum" ) ) ); sink.tableRow_(); sink.tableRow(); tableCell( getBundle( locale ).getString( "report.plugin.systemrequirements.diskspace" ) ); tableCell( ( StringUtils.isNotEmpty( requirements.getDiskSpace() ) - ? requirements.getDiskSpace() - : getBundle( locale ) - .getString( - "report.plugin.systemrequirements.nominimum" ) ) ); + ? requirements.getDiskSpace() + : getBundle( locale ).getString( "report.plugin.systemrequirements.nominimum" ) ) ); sink.tableRow_(); if ( requirements.getOthers() != null && requirements.getOthers().size() > 0 ) @@ -434,7 +430,8 @@ public class PluginReport sb.append( "" ).append( '\n' ); sb.append( " ..." ).append( '\n' ); sb.append( " " ).append( '\n' ); - sb.append( " " ).append( '\n' ); + sb.append( " " ) + .append( '\n' ); sb.append( " " ).append( '\n' ); sb.append( " " ).append( '\n' ); sb.append( " " ).append( '\n' ); @@ -448,7 +445,8 @@ public class PluginReport sb.append( " ..." ).append( '\n' ); sb.append( " " ).append( '\n' ); sb.append( " " ).append( '\n' ); - sb.append( " " ).append( '\n' ); + sb.append( " " ) + .append( '\n' ); sb.append( " " ).append( '\n' ); sb.append( " " ).append( '\n' ); sb.append( " " ).append( pluginDescriptor.getGroupId() ).append( "" ) @@ -465,7 +463,8 @@ public class PluginReport if ( hasMavenReport ) { sb.append( " ..." ).append( '\n' ); - sb.append( " " ).append( '\n' ); + sb.append( " " ) + .append( '\n' ); sb.append( " " ).append( '\n' ); sb.append( " " ).append( '\n' ); sb.append( " " ).append( '\n' ); diff --git a/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/UpdatePluginRegistryMojo.java b/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/UpdatePluginRegistryMojo.java index 43bb915..d8f3bd2 100644 --- a/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/UpdatePluginRegistryMojo.java +++ b/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/UpdatePluginRegistryMojo.java @@ -130,8 +130,8 @@ public class UpdatePluginRegistryMojo if ( TrackableBase.GLOBAL_LEVEL.equals( plugin.getSourceLevel() ) ) { // do nothing. We don't rewrite the globals, under any circumstances. - getLog().warn( "Cannot update registered version for plugin {" + groupId + ":" + artifactId + - "}; it is specified in the global registry." ); + getLog().warn( "Cannot update registered version for plugin {" + groupId + ":" + artifactId + + "}; it is specified in the global registry." ); } else { @@ -181,8 +181,8 @@ public class UpdatePluginRegistryMojo } catch ( IOException e ) { - getLog().warn( "Cannot rewrite user-level plugin-registry.xml with new plugin version of plugin: \'" + - groupId + ":" + artifactId + "\'.", e ); + getLog().warn( "Cannot rewrite user-level plugin-registry.xml with new plugin version of plugin: \'" + + groupId + ":" + artifactId + "\'.", e ); } finally {