Skip to content

Commit

Permalink
fix project configuration: repository URL
Browse files Browse the repository at this point in the history
  • Loading branch information
woj-tek committed Jul 16, 2020
1 parent 38c6a0f commit 0f06615
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,9 @@


<scm>
<connection>scm:git:https://git.tigase.tech/jaxmpp2.git</connection>
<developerConnection>scm:git:https://git.tigase.tech/jaxmpp2.git</developerConnection>
<url>https://tigase.tech/projects/jaxmpp2/repository</url>
<connection>scm:git:https://github.com/tigase/jaxmpp.git</connection>
<developerConnection>scm:git:https://github.com/tigase/jaxmpp.git</developerConnection>
<url>https://github.com/tigase/jaxmpp</url>
<tag>HEAD</tag>
</scm>

Expand All @@ -185,17 +185,17 @@
<source>
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)

</source>
</configuration>
Expand Down

0 comments on commit 0f06615

Please sign in to comment.