diff options
author | James Moger <james.moger@gitblit.com> | 2011-04-04 09:10:51 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2011-04-04 09:10:51 -0400 |
commit | 5fe7df81eb38dc66f2cfc4bf1973863a19f55cf2 (patch) | |
tree | 3f1b1b3f953aa8a5ed60e149043598fbdaf4d42f /src/com/gitblit/Constants.java | |
download | gitblit-5fe7df81eb38dc66f2cfc4bf1973863a19f55cf2.tar.gz gitblit-5fe7df81eb38dc66f2cfc4bf1973863a19f55cf2.zip |
Initial import of Git:Blit.
Change-Id: Ifce000c85c8947c3a768e782c841e41a8953d314
Diffstat (limited to 'src/com/gitblit/Constants.java')
-rw-r--r-- | src/com/gitblit/Constants.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/com/gitblit/Constants.java b/src/com/gitblit/Constants.java new file mode 100644 index 00000000..5de10cdf --- /dev/null +++ b/src/com/gitblit/Constants.java @@ -0,0 +1,12 @@ +package com.gitblit;
+
+public class Constants {
+
+ public final static String NAME = "Git:Blit";
+
+ public final static String VERSION = "0.11.3";
+
+ public static String getRunningVersion() {
+ return NAME + " v" + VERSION;
+ }
+}
|