mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-02-06 11:52:47 -08:00
20 lines
215 B
Groovy
20 lines
215 B
Groovy
plugins {
|
|
id 'application'
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
java {
|
|
srcDirs '../../04_Awari/java'
|
|
}
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
application {
|
|
mainClass = 'AwariGame'
|
|
}
|