only: preparing for gradle 9
This commit is contained in:
parent
33658e4d02
commit
e01f3e3618
|
@ -29,7 +29,9 @@ evaluationDependsOn(':core_ui')
|
||||||
evaluationDependsOn(':core_io')
|
evaluationDependsOn(':core_io')
|
||||||
|
|
||||||
jar {
|
jar {
|
||||||
|
base {
|
||||||
archivesBaseName = 'rusefi_autoupdate'
|
archivesBaseName = 'rusefi_autoupdate'
|
||||||
|
}
|
||||||
destinationDirectory = file("$rootDir/../java_console_binary")
|
destinationDirectory = file("$rootDir/../java_console_binary")
|
||||||
|
|
||||||
// lame 'shadowJar' manual implementation causes logo.png to be include both as source ans outputs? weird
|
// lame 'shadowJar' manual implementation causes logo.png to be include both as source ans outputs? weird
|
||||||
|
|
|
@ -30,8 +30,10 @@ shadowJar {
|
||||||
dependsOn(':enum_to_string:shadowJar')
|
dependsOn(':enum_to_string:shadowJar')
|
||||||
dependsOn(':config_definition_base:shadowJar')
|
dependsOn(':config_definition_base:shadowJar')
|
||||||
dependsOn(':config_definition:shadowJar')
|
dependsOn(':config_definition:shadowJar')
|
||||||
|
base {
|
||||||
archivesBaseName = "${rootDir}/../java_console_binary/rusefi_console"
|
archivesBaseName = "${rootDir}/../java_console_binary/rusefi_console"
|
||||||
archiveClassifier = ''
|
archiveClassifier = ''
|
||||||
|
}
|
||||||
|
|
||||||
manifest {
|
manifest {
|
||||||
attributes(
|
attributes(
|
||||||
|
|
|
@ -6,7 +6,9 @@ plugins {
|
||||||
defaultTasks 'shadowJar'
|
defaultTasks 'shadowJar'
|
||||||
|
|
||||||
jar {
|
jar {
|
||||||
mainClassName = 'rusefi.GccMapReader'
|
application {
|
||||||
|
mainClass = 'rusefi.GccMapReader'
|
||||||
|
}
|
||||||
|
|
||||||
destinationDirectory = file( '$rootDir/../..' )
|
destinationDirectory = file( '$rootDir/../..' )
|
||||||
manifest {
|
manifest {
|
||||||
|
|
Loading…
Reference in New Issue