26 lines
716 B
Groovy
26 lines
716 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
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'
|
|
compile 'org.javatuples:javatuples:1.2'
|
|
// https://mvnrepository.com/artifact/org.javatuples/javatuples
|
|
compile group: 'org.javatuples', name: 'javatuples', version: '1.2'
|
|
|
|
}
|