Separated the cmdManager logic like PotatOS and added the version to gradle.properties
All checks were successful
Production deployment / Build (push) Successful in 1m58s
Production deployment / Deploying (push) Successful in 16s

This commit was merged in pull request #10.
This commit is contained in:
2023-09-17 16:44:01 +02:00
parent 4318d6be29
commit 979d34e0b8
8 changed files with 171 additions and 85 deletions

View File

@@ -44,8 +44,12 @@ application {
mainClassName = 'fr.Skydust.JdrBot.JdrBot'
}
shadowJar {
archiveFileName = "${project.name}.jar"
}
jar {
manifest {
attributes 'Main-Class': 'fr.Skydust.JdrBot.JdrBot'
attributes 'Main-Class': 'fr.Skydust.JdrBot.JdrBot', 'Implementation-Version': version
}
}