From 0f066154a7574db148d173d54d68718eaefc9cc3 Mon Sep 17 00:00:00 2001 From: Wojciech Kapcia Date: Thu, 16 Jul 2020 18:35:40 -0400 Subject: [PATCH] fix project configuration: repository URL --- pom.xml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/pom.xml b/pom.xml index 6fa353f2..ed204154 100644 --- a/pom.xml +++ b/pom.xml @@ -158,9 +158,9 @@ - scm:git:https://git.tigase.tech/jaxmpp2.git - scm:git:https://git.tigase.tech/jaxmpp2.git - https://tigase.tech/projects/jaxmpp2/repository + scm:git:https://github.com/tigase/jaxmpp.git + scm:git:https://github.com/tigase/jaxmpp.git + https://github.com/tigase/jaxmpp HEAD @@ -185,17 +185,17 @@ def version try { - def command = project.properties.script - def process = command.execute() - process.waitFor() + def command = project.properties.script + def process = command.execute() + process.waitFor() - version = process.in.text.trim() + version = process.in.text.trim() } catch (Exception e) { - version = '0' + version = '0' } - println "setting revision to: " + version + log.info("setting revision to: " + version) - project.properties.setProperty( 'gitVersion' , version ) + project.properties.setProperty('gitVersion', version)