refo/build.gradle

27 lines
644 B
Groovy

plugins {
id 'java'
id 'org.openjfx.javafxplugin' version '0.0.8'
}
group 'net.lwenstrom.jan'
version '1.0-SNAPSHOT'
sourceCompatibility = 11
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/org.jfree/jfreechart
// https://mvnrepository.com/artifact/org.knowm.xchart/xchart
compile group: 'org.knowm.xchart', name: 'xchart', version: '3.2.2'
testCompile group: 'junit', name: 'junit', version: '4.12'
compileOnly 'org.projectlombok:lombok:1.18.10'
annotationProcessor 'org.projectlombok:lombok:1.18.10'
}
javafx {
modules = [ 'javafx.controls', 'javafx.fxml' ]
}