turn-based-strategy-game/client/build.gradle

36 lines
592 B
Groovy
Raw Normal View History

/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
2021-10-12 10:33:14 +02:00
id 'application'
id 'fr.lnl.game.java-application-conventions'
id 'org.openjfx.javafxplugin' version '0.0.10'
}
2021-10-12 10:33:14 +02:00
repositories {
mavenCentral()
}
dependencies {
implementation project(':server')
}
javafx {
2021-10-10 16:08:55 +02:00
version = JavaVersion.VERSION_17
modules = [ 'javafx.controls', 'javafx.graphics' ]
}
compileJava {
options.encoding = 'UTF-8'
}
application {
// Define the main class for the application.
2021-10-12 10:33:14 +02:00
mainClassName = 'fr.lnl.game.client.App'
}
2021-12-07 15:13:27 +01:00
run {
standardInput = System.in
}