34 lines
640 B
Groovy
34 lines
640 B
Groovy
|
/*
|
||
|
* This file was generated by the Gradle 'init' task.
|
||
|
*/
|
||
|
|
||
|
plugins {
|
||
|
id 'application'
|
||
|
id 'fr.lnl.game.java-application-conventions'
|
||
|
id 'org.openjfx.javafxplugin' version '0.0.10'
|
||
|
id 'org.javamodularity.moduleplugin' version '1.8.10' apply false
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation project(':server')
|
||
|
}
|
||
|
|
||
|
javafx {
|
||
|
version = JavaVersion.VERSION_17
|
||
|
modules = [ 'javafx.controls', 'javafx.graphics' ]
|
||
|
}
|
||
|
|
||
|
application {
|
||
|
// Define the main class for the application.
|
||
|
mainClassName = 'fr.lnl.game.client.App'
|
||
|
mainModule = "client"
|
||
|
}
|
||
|
|
||
|
run {
|
||
|
standardInput = System.in
|
||
|
}
|