sparrow/build.gradle
2020-03-28 10:45:39 +02:00

27 lines
No EOL
598 B
Groovy

plugins {
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.8'
}
group 'com.craigraw'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
javafx {
version = "14"
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
dependencies {
implementation project(':drongo')
compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.4'
compile group: 'no.tornado', name: 'tornadofx-controls', version: '1.0.4'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
mainClassName = 'com.craigraw.sparrow.MainApp'