refo/build.gradle

42 lines
1022 B
Groovy

plugins {
id 'java'
id 'application'
}
group 'net.lwenstrom.jan'
version '1.0-SNAPSHOT'
sourceCompatibility = 11
targetCompatibility = 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'
}
// Include dependent libraries in archive.
mainClassName = "example.JumpingDino"
jar {
manifest {
attributes "Main-Class": "$mainClassName"
}
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}