mirror of https://github.com/kiwix/libkiwix.git
Allow the gradle to add an extra build version in the pom file.
This is needed to be able to publish new build of the same version on bintray.
This commit is contained in:
parent
0a331f8ba9
commit
1bb5e278ed
|
@ -26,7 +26,7 @@ task writePom {
|
|||
project {
|
||||
groupId 'org.kiwix.kiwixlib'
|
||||
artifactId 'kiwixlib'
|
||||
version '6.0.3'
|
||||
version '6.0.3' + (System.env.KIWIXLIB_BUILDVERSION == null ? '' : '-'+System.env.KIWIXLIB_BUILDVERSION)
|
||||
packaging 'aar'
|
||||
name 'kiwixlib'
|
||||
url 'https://github.com/kiwix/kiwix-lib'
|
||||
|
|
Loading…
Reference in New Issue