You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
265 B
15 lines
265 B
plugins {
|
|
id 'application'
|
|
id 'org.openjfx.javafxplugin' version '0.0.9'
|
|
}
|
|
|
|
mainClassName = 'de.fd.fh.ClientApp'
|
|
|
|
dependencies {
|
|
implementation project(':fh.fd.ci.shared')
|
|
}
|
|
|
|
javafx {
|
|
version = '11'
|
|
modules = ['javafx.controls', 'javafx.fxml']
|
|
}
|