1
0
mirror of https://github.com/aNNiMON/HotaruFX.git synced 2024-09-19 14:14:21 +03:00
HotaruFX/app/build.gradle

34 lines
922 B
Groovy
Raw Normal View History

2017-09-09 18:17:43 +03:00
plugins {
id 'java'
id 'application'
id "com.github.johnrengelman.shadow" version "5.1.0"
id 'org.openjfx.javafxplugin' version '0.0.8'
2017-09-09 18:17:43 +03:00
}
2017-08-21 12:26:13 +03:00
group 'HotaruFX'
version '1.0.0'
2017-09-09 18:17:43 +03:00
mainClassName = 'com.annimon.hotarufx.Main'
2017-08-21 12:26:13 +03:00
sourceCompatibility = 11
2017-08-21 12:26:13 +03:00
repositories {
mavenCentral()
}
javafx {
version = "11"
modules = ['javafx.controls', 'javafx.fxml', "javafx.swing"]
}
ext.junit5Version = '5.5.2'
2017-08-21 12:26:13 +03:00
dependencies {
implementation 'org.fxmisc.richtext:richtextfx:0.10.2'
testRuntime 'org.junit.platform:junit-platform-launcher:1.5.2'
testImplementation "org.junit.jupiter:junit-jupiter-api:$junit5Version"
testImplementation "org.junit.jupiter:junit-jupiter-params:$junit5Version"
testRuntime "org.junit.jupiter:junit-jupiter-engine:$junit5Version"
testRuntime "org.junit.vintage:junit-vintage-engine:$junit5Version"
2017-08-21 14:59:20 +03:00
testImplementation 'org.hamcrest:hamcrest-library:1.3'
2017-08-21 12:26:13 +03:00
}