Include version in bisq-desktop jar manifest

Include the application version number in the jar manifest. This makes it easier later on, in the packaging process, to programmatically retrieve the build version from a reliable source.
This commit is contained in:
cd2357 2020-09-19 20:48:28 +02:00
parent ef680f9ba6
commit b9164e6e82
No known key found for this signature in database
GPG key ID: F26C56748514D0D3

View file

@ -378,6 +378,10 @@ configure(project(':desktop')) {
version = '1.3.9-SNAPSHOT'
jar.manifest.attributes(
"Implementation-Title": project.name,
"Implementation-Version": version)
mainClassName = 'bisq.desktop.app.BisqAppMain'
tasks.withType(AbstractArchiveTask) {