actions-test/build.gradle
JeremyStarTM f3de70d1d8
All checks were successful
test / test (push) Successful in 40s
test / caching (push) Successful in 1m12s
Fix main class name
2024-08-19 20:51:35 +02:00

16 lines
211 B
Groovy

plugins {
id("java")
id("application")
}
jar {
manifest {
attributes(
"Main-Class": "helloworld.Main"
)
}
}
application {
mainClass.set("helloworld.Main")
}