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

23 lines
443 B
Groovy
Raw Normal View History

/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'fr.lnl.game.java-application-conventions'
id 'org.openjfx.javafxplugin' version '0.0.10'
}
dependencies {
implementation project(':server')
}
javafx {
2021-10-10 16:08:55 +02:00
version = JavaVersion.VERSION_17
modules = [ 'javafx.controls', 'javafx.graphics' ]
}
application {
// Define the main class for the application.
mainClass = 'fr.lnl.game.client.App'
}