1 package com.soebes.maven.extensions;
2
3 public final class BuildTimeProfilerVersion {
4
5 private static final String VERSION = "0.2.0";
6 private static final String GROUPID = "com.soebes.maven.extensions";
7 private static final String SVN = "scm:git:ssh://git@github.com/khmarbaise/maven-buildtime-profiler.git";
8 private static final String SVN_BRANCH = "${scmBranch}";
9 private static final String REVISION = "${buildNumber}";
10
11
12 private BuildTimeProfilerVersion () {
13
14 }
15
16 public static final String getVersion() {
17 return VERSION;
18 }
19
20 public static final String getGroupId() {
21 return GROUPID;
22 }
23
24 public static final String getSVN() {
25 return SVN;
26 }
27
28 public static final String getRevision() {
29 return REVISION;
30 }
31
32 public static final String getSVNBranch() {
33 return SVN_BRANCH;
34 }
35 }