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

34 lines
640 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-12-09 21:15:23 +01:00
id 'org.javamodularity.moduleplugin' version '1.8.10' apply false
}
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' ]
}
application {
// Define the main class for the application.
2021-10-12 10:33:14 +02:00
mainClassName = 'fr.lnl.game.client.App'
2021-12-09 21:24:51 +01:00
mainModule = "client"
}
2021-12-07 15:13:27 +01:00
run {
standardInput = System.in
}