summaryrefslogtreecommitdiffstats
path: root/src/com/gitblit/Constants.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/gitblit/Constants.java')
-rw-r--r--src/com/gitblit/Constants.java12
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;
+ }
+}