plugins { id 'com.github.johnrengelman.shadow' version '2.0.1' id 'java' id 'application' } group 'HotaruFX' version '1.0-SNAPSHOT' mainClassName = 'com.annimon.hotarufx.Main' sourceCompatibility = 1.8 repositories { mavenCentral() } dependencies { implementation 'org.fxmisc.richtext:richtextfx:0.6.10' compileOnly 'org.projectlombok:lombok:1.16.18' testCompileOnly 'org.projectlombok:lombok:1.16.18' 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' testRuntime 'org.junit.jupiter:junit-jupiter-params:5.0.0-RC2' testImplementation 'org.hamcrest:hamcrest-library:1.3' }