Commit 22b1f256 authored by Dave Syer's avatar Dave Syer

Remove hardcoded version in Banner

parent 34500632
...@@ -53,7 +53,6 @@ abstract class Banner { ...@@ -53,7 +53,6 @@ abstract class Banner {
} }
String version = Banner.class.getPackage().getImplementationVersion(); String version = Banner.class.getPackage().getImplementationVersion();
version = (version == null ? "" : " (v" + version + ")"); version = (version == null ? "" : " (v" + version + ")");
version = " v0.5.0.BUILD.SNAPSHOT";
String padding = ""; String padding = "";
while (padding.length() < STRAP_LINE_SIZE while (padding.length() < STRAP_LINE_SIZE
- (version.length() + SPRING_BOOT.length())) { - (version.length() + SPRING_BOOT.length())) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment