Configure app build.

This commit is contained in:
Michael Lipp 2023-06-08 23:12:56 +02:00
parent 11803948d9
commit a8f9fe75ef
2 changed files with 15 additions and 2 deletions

View file

@ -24,6 +24,19 @@ dependencies {
}
application {
applicationDefaultJvmArgs = ['-Xms50m',
'-Djava.util.logging.manager=org.jdrupes.vmoperator.util.LongLoggingManager'
]
// Define the main class for the application.
mainClass = 'org.jdrupes.vmoperator.runner.qemu.Runner'
}
distributions {
main {
distributionBaseName = 'runner-qemu'
// contents {
// from 'src/readme'
// }
}
}