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

27 lines
768 B
Groovy
Raw Normal View History

2017-09-09 18:17:43 +03:00
plugins {
id 'com.github.johnrengelman.shadow' version '2.0.1'
id 'java'
id 'application'
}
2017-08-21 12:26:13 +03:00
group 'HotaruFX'
version '1.0-SNAPSHOT'
2017-09-09 18:17:43 +03:00
mainClassName = 'com.annimon.hotarufx.Main'
2017-08-21 12:26:13 +03:00
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
2017-09-04 17:16:01 +03:00
implementation 'org.fxmisc.richtext:richtextfx:0.6.10'
2017-08-21 13:11:07 +03:00
compileOnly 'org.projectlombok:lombok:1.16.18'
2017-08-24 14:44:09 +03:00
testCompileOnly 'org.projectlombok:lombok:1.16.18'
2017-08-21 14:59:20 +03:00
testRuntime 'org.junit.platform:junit-platform-launcher:1.0.0-RC2'
testRuntime 'org.junit.jupiter:junit-jupiter-engine:5.0.0-RC2'
testRuntime 'org.junit.vintage:junit-vintage-engine:4.12.0-RC2'
2017-09-08 13:18:20 +03:00
testRuntime 'org.junit.jupiter:junit-jupiter-params:5.0.0-RC2'
2017-08-21 14:59:20 +03:00
testImplementation 'org.hamcrest:hamcrest-library:1.3'
2017-08-21 12:26:13 +03:00
}