ma2tetr/build.gradle

23 lines
239 B
Groovy
Raw Permalink Normal View History

2023-05-18 16:14:03 +02:00
plugins {
id 'application'
}
repositories {
mavenCentral()
}
dependencies {
}
application {
mainClass = 'ma2tetr.App'
}
2023-05-21 09:49:28 +02:00
jar {
manifest {
attributes(
"Main-Class": "ma2tetr.App"
)
}
}