parent
95b8135916
commit
d991f73dec
|
@ -43,6 +43,7 @@ jar {
|
||||||
manifest {
|
manifest {
|
||||||
attributes(
|
attributes(
|
||||||
'Main-Class': 'com.rusefi.autoupdate.Autoupdate',
|
'Main-Class': 'com.rusefi.autoupdate.Autoupdate',
|
||||||
|
'Build-Jdk' : "${System.properties['java.version']} (${System.properties['java.vendor']} ${System.properties['java.vm.version']})",
|
||||||
'Built-Date': new Date().toString()
|
'Built-Date': new Date().toString()
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,6 +33,7 @@ shadowJar {
|
||||||
|
|
||||||
manifest {
|
manifest {
|
||||||
attributes(
|
attributes(
|
||||||
|
'Build-Jdk' : "${System.properties['java.version']} (${System.properties['java.vendor']} ${System.properties['java.vm.version']})",
|
||||||
'Main-Class': 'com.rusefi.Launcher'
|
'Main-Class': 'com.rusefi.Launcher'
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,6 +20,7 @@ jar {
|
||||||
manifest {
|
manifest {
|
||||||
attributes(
|
attributes(
|
||||||
'Built-Date': new Date().format('yyyy-MM-dd HH:mm:ss'),
|
'Built-Date': new Date().format('yyyy-MM-dd HH:mm:ss'),
|
||||||
|
'Build-Jdk' : "${System.properties['java.version']} (${System.properties['java.vendor']} ${System.properties['java.vm.version']})",
|
||||||
'Signature-Vendor': 'rusEFI LLC',
|
'Signature-Vendor': 'rusEFI LLC',
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -31,4 +32,4 @@ shadowJar {
|
||||||
manifest {
|
manifest {
|
||||||
inheritFrom project.tasks.jar.manifest
|
inheritFrom project.tasks.jar.manifest
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,10 +24,15 @@ def userHome = System.properties['user.home']
|
||||||
jar {
|
jar {
|
||||||
archiveBaseName = jarName
|
archiveBaseName = jarName
|
||||||
|
|
||||||
|
def projectToolchain = java.toolchain {
|
||||||
|
languageVersion = JavaLanguageVersion.of(11)
|
||||||
|
}
|
||||||
|
|
||||||
manifest {
|
manifest {
|
||||||
attributes(
|
attributes(
|
||||||
'Built-Date': new Date().format('yyyy-MM-dd HH:mm:ss'),
|
'Built-Date': new Date().format('yyyy-MM-dd HH:mm:ss'),
|
||||||
'Signature-Vendor': 'rusEFI LLC',
|
'Signature-Vendor': 'rusEFI LLC',
|
||||||
|
'Build-Jdk' : "${System.properties['java.version']} (${System.properties['java.vendor']} ${System.properties['java.vm.version']})",
|
||||||
'ApplicationPlugin': 'com.rusefi.ts_plugin.TsPluginLauncher'
|
'ApplicationPlugin': 'com.rusefi.ts_plugin.TsPluginLauncher'
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue