17 lines
210 B
Groovy
17 lines
210 B
Groovy
|
plugins {
|
||
|
id("java")
|
||
|
id("application")
|
||
|
}
|
||
|
|
||
|
jar {
|
||
|
manifest {
|
||
|
attributes(
|
||
|
"Main-Class": "helloworld.Main"
|
||
|
)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
application {
|
||
|
mainClass.set("helloworld.Man")
|
||
|
}
|