actions-test/build.gradle
JeremyStarTM b5396eb023
Some checks failed
test / test (push) Successful in 39s
test / caching (push) Failing after 50s
Add caching test job
2024-08-19 20:50:27 +02:00

16 lines
210 B
Groovy

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