Добавил манифест, поправил starter.bat и starter

This commit is contained in:
2023-04-14 14:15:40 +03:00
parent 43bce7ea55
commit 861c6af76a
3 changed files with 11 additions and 2 deletions

View File

@ -92,3 +92,12 @@ task buildRelease(type: GradleBuild) {
}
idea { module.scopes.PROVIDED.plus += [configurations.provided] }
jar{
manifest{
attributes(
'Main-Class': 'biz.redsoft.ncore.client.MainForm',
'Class-Path': configurations.runtimeClasspath.collect { it.name }.join(' ') + " ${ncoreGenerateControlDataJar.archiveName}"
)
}
}