12345678910111213141516171819202122232425262728 |
- plugins {
- id 'java'
- id 'application'
- id 'org.openjfx.javafxplugin' version '0.0.7'
- }
- group 'leobots.de'
- version '1.0'
- sourceCompatibility = 14
- repositories {
- mavenCentral()
- }
- dependencies {
- testCompile group: 'junit', name: 'junit', version: '4.12'
- compile group: 'org.zeromq', name: 'jeromq', version: '0.5.2'
- compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1'
- }
- javafx {
- modules = ['javafx.controls', 'javafx.fxml']
- version = '14.0.1'
- }
- mainClassName = 'mdd.client.Main'
|