mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-02 20:36:44 +00:00
25 lines
440 B
Groovy
25 lines
440 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')
|
||
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
||
|
}
|
||
|
|
||
|
mainClassName = 'com.craigraw.sparrow.MainApp'
|