From 02ab62bfe4a1cd29394b3610a7cae9ede7683602 Mon Sep 17 00:00:00 2001 From: Jarred Li Date: Fri, 13 Apr 2012 16:10:21 +0800 Subject: [PATCH] change snapshot update policy --- samples/helloworld/pom.xml | 1 + .../samples/helloworld/commands/MyHistoryFileNameProvider.java | 2 +- .../shell/samples/helloworld/commands/MyPromptProvider.java | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) 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"; } }