Skip to content

Commit

Permalink
build.gradle: Added to manifests 'Build-Jdk' property.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulosousadias committed Feb 1, 2024
1 parent d3af6a4 commit 3edb7ab
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,7 @@ allprojects {
'Build-Revision': "${rootProject.name}-${project.version}-git#${-> project.ext.gitProps['git.commit.id.describe']}",
'Built-By': "${System.properties['user.name']}",
'Built-On': "${new Date()}",
'Build-Jdk': "${System.properties['java.version']} (${System.properties['java.vendor']} ${System.properties['java.vm.version']})",
)
}
archiveVersion = ''
Expand Down Expand Up @@ -828,6 +829,7 @@ task buildWorldmapBundleJar(type: Jar) {
'Build-Revision': "${rootProject.name}-${project.version}-git#${-> project.ext.gitProps['git.commit.id.describe']}",
'Built-By': "${System.properties['user.name']}",
'Built-On': "${new Date()}",
'Build-Jdk': "${System.properties['java.version']} (${System.properties['java.vendor']} ${System.properties['java.vm.version']})",
'Main-Class': 'pt.lsts.neptus.app.tiles.WorldMapPanel',
)
}
Expand Down Expand Up @@ -915,6 +917,7 @@ task buildCheckBundleJar(type: Jar) {
'Build-Revision': "${rootProject.name}-${project.version}-git#${-> project.ext.gitProps['git.commit.id.describe']}",
'Built-By': "${System.properties['user.name']}",
'Built-On': "${new Date()}",
'Build-Jdk': "${System.properties['java.version']} (${System.properties['java.vendor']} ${System.properties['java.vm.version']})",
'Main-Class': 'pt.lsts.neptus.gui.checklist.ChecklistPanel',
)
}
Expand Down

0 comments on commit 3edb7ab

Please sign in to comment.