mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-02 20:36:44 +00:00
27 lines
No EOL
598 B
Groovy
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' |