Formatting

This commit is contained in:
Phillip Webb
2018-05-25 23:52:38 -07:00
parent 2215709165
commit 3702da4573
32 changed files with 195 additions and 199 deletions

View File

@@ -267,7 +267,8 @@ public abstract class AbstractRunMojo extends AbstractDependencyFilterMojo {
+ "]");
}
if (hasWorkingDirectorySet()) {
getLog().warn("Fork mode disabled, ignoring working directory configuration");
getLog().warn(
"Fork mode disabled, ignoring working directory configuration");
}
}
}
@@ -475,7 +476,8 @@ public abstract class AbstractRunMojo extends AbstractDependencyFilterMojo {
private void logArguments(String message, String[] args) {
if (getLog().isDebugEnabled()) {
getLog().debug(Arrays.stream(args).collect(Collectors.joining(" ", message, "")));
getLog().debug(
Arrays.stream(args).collect(Collectors.joining(" ", message, "")));
}
}

View File

@@ -229,9 +229,9 @@ public class RepackageMojo extends AbstractDependencyFilterMojo {
}
/**
* Return the source {@link Artifact} to repackage. If a classifier is specified
* and an artifact with that classifier exists, it is used. Otherwise, the main
* artifact is used.
* Return the source {@link Artifact} to repackage. If a classifier is specified and
* an artifact with that classifier exists, it is used. Otherwise, the main artifact
* is used.
* @return the source artifact to repackage
*/
private Artifact getSourceArtifact() {