diff options
Diffstat (limited to 'BKUWebStart')
-rw-r--r-- | BKUWebStart/pom.xml | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/BKUWebStart/pom.xml b/BKUWebStart/pom.xml index c7882a76..e70114a3 100644 --- a/BKUWebStart/pom.xml +++ b/BKUWebStart/pom.xml @@ -199,7 +199,7 @@ </manifest> <manifestEntries> <mode>development</mode> - <url>${pom.url}</url> + <url>${project.url}</url> <SplashScreen-Image>at/gv/egiz/bku/webstart/splash.png</SplashScreen-Image> </manifestEntries> </archive> @@ -213,8 +213,8 @@ <profile> <!-- This profile is here for triggering when another scm than svn is - used (for example git). Instead of getting the version build number - from svn we will use the build date and the user name. + used (for example git). Try to get the associated svn revision + from git-svn. --> <id>buildnumber-git</id> <activation> @@ -236,9 +236,19 @@ </goals> <configuration> <source> - def gitSvnProc = ["sh", "-c", "git svn info | awk '/Revision:/ { print \$2 }'"].execute() + def shell = "sh" + def param = "-c" + if (System.getProperty("os.name").toUpperCase().contains("WINDOWS")) { + shell = "cmd" + param = "/c" + } + def gitSvnProc = [shell, param, "git svn info | grep Revision:"].execute() gitSvnProc.waitFor() - project.properties['gitSvnRev'] = gitSvnProc.in.text.trim() + def svnref = "unknown" + def out = gitSvnProc.in.text.split(" ") + if (out.size() == 2) + svnref = out[1].trim() + project.properties['gitSvnRev'] = svnref </source> </configuration> </execution> |