24 lines
310 B
Text
24 lines
310 B
Text
|
plugins {
|
||
|
application
|
||
|
java
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
java {
|
||
|
toolchain {
|
||
|
languageVersion.set(JavaLanguageVersion.of(22))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
application {
|
||
|
mainClass.set("dev.euph.game.Main")
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(project(path = ":engine", configuration = "shadow"))
|
||
|
}
|
||
|
|