diff --git a/samples/helloworld/pom.xml b/samples/helloworld/pom.xml index bc18ee40..7707ba9d 100644 --- a/samples/helloworld/pom.xml +++ b/samples/helloworld/pom.xml @@ -88,6 +88,7 @@ spring-maven-snapshot true + always Springframework Maven SNAPSHOT Repository http://maven.springframework.org/snapshot diff --git a/samples/helloworld/src/main/java/org/springframework/shell/samples/helloworld/commands/MyHistoryFileNameProvider.java b/samples/helloworld/src/main/java/org/springframework/shell/samples/helloworld/commands/MyHistoryFileNameProvider.java index 523e14d8..33b309b0 100644 --- a/samples/helloworld/src/main/java/org/springframework/shell/samples/helloworld/commands/MyHistoryFileNameProvider.java +++ b/samples/helloworld/src/main/java/org/springframework/shell/samples/helloworld/commands/MyHistoryFileNameProvider.java @@ -36,7 +36,7 @@ public class MyHistoryFileNameProvider extends DefaultHistoryFileNameProvider{ @Override public String name() { - return "my banner provider"; + return "my history file name provider"; } } diff --git a/samples/helloworld/src/main/java/org/springframework/shell/samples/helloworld/commands/MyPromptProvider.java b/samples/helloworld/src/main/java/org/springframework/shell/samples/helloworld/commands/MyPromptProvider.java index 674872c9..9a90f44c 100644 --- a/samples/helloworld/src/main/java/org/springframework/shell/samples/helloworld/commands/MyPromptProvider.java +++ b/samples/helloworld/src/main/java/org/springframework/shell/samples/helloworld/commands/MyPromptProvider.java @@ -37,7 +37,7 @@ public class MyPromptProvider extends DefaultPromptProvider { @Override public String name() { - return "my banner provider"; + return "my prompt provider"; } }