2021-10-10 15:19:04 +02:00
|
|
|
/*
|
|
|
|
* This file was generated by the Gradle 'init' task.
|
|
|
|
*/
|
|
|
|
|
|
|
|
plugins {
|
2021-10-12 10:33:14 +02:00
|
|
|
id 'application'
|
2021-10-10 15:19:04 +02:00
|
|
|
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()
|
|
|
|
}
|
|
|
|
|
2021-10-10 15:19:04 +02:00
|
|
|
dependencies {
|
|
|
|
implementation project(':server')
|
|
|
|
}
|
|
|
|
|
|
|
|
javafx {
|
2021-10-10 16:08:55 +02:00
|
|
|
version = JavaVersion.VERSION_17
|
2021-10-10 15:19:04 +02:00
|
|
|
modules = [ 'javafx.controls', 'javafx.graphics' ]
|
|
|
|
}
|
|
|
|
|
2021-11-29 19:22:43 +01:00
|
|
|
compileJava {
|
|
|
|
options.encoding = 'UTF-8'
|
|
|
|
}
|
|
|
|
|
2021-10-10 15:19:04 +02:00
|
|
|
application {
|
|
|
|
// Define the main class for the application.
|
2021-10-12 10:33:14 +02:00
|
|
|
mainClassName = 'fr.lnl.game.client.App'
|
2021-10-10 15:19:04 +02:00
|
|
|
}
|
2021-12-07 15:13:27 +01:00
|
|
|
|
|
|
|
run {
|
|
|
|
standardInput = System.in
|
|
|
|
}
|