Closes gh-10636
This commit is contained in:
Johnny Lim
2017-10-14 01:39:03 +09:00
committed by Stephane Nicoll
parent 0af4536316
commit 5aa32b3d0f
18 changed files with 28 additions and 39 deletions

View File

@@ -20,7 +20,7 @@ import org.springframework.boot.configurationsample.DefaultEnablement;
import org.springframework.boot.configurationsample.Endpoint;
/**
* An endpoint that is enabled unless configured explicitly..
* An endpoint that is enabled unless configured explicitly.
*
* @author Stephane Nicoll
*/

View File

@@ -52,7 +52,7 @@ class UnresolvedDependenciesAnalyzer {
StringBuilder message = new StringBuilder();
message.append("\nDuring the build, one or more dependencies that were "
+ "declared without a version failed to resolve:\n");
this.dependenciesWithNoVersion.stream()
this.dependenciesWithNoVersion
.forEach((dependency) -> message.append(" " + dependency + "\n"));
message.append("\nDid you forget to apply the "
+ "io.spring.dependency-management plugin to the " + project.getName()