Add manifest main class entry

This commit is contained in:
Steven Tracey 2022-11-21 20:17:35 -05:00
parent 7bb69e5120
commit 7c8583ffd8

View File

@ -3,7 +3,7 @@ plugins {
id 'com.github.johnrengelman.shadow' version '5.2.0'
}
group 'tech.nevets'
group 'tech.nevets.autoupdater'
version '0.1.0'
repositories {
@ -16,4 +16,12 @@ dependencies {
implementation 'com.google.code.gson:gson:2.10'
implementation 'commons-io:commons-io:2.11.0'
implementation 'com.github.docker-java:docker-java:3.2.13'
}
shadowJar {
manifest {
attributes(
'Main-Class': 'tech.nevets.autoupdater.Main'
)
}
}