25 lines
411 B
Groovy
25 lines
411 B
Groovy
plugins {
|
|
id "com.github.johnrengelman.shadow"
|
|
id 'application'
|
|
}
|
|
|
|
apply plugin: "kotlin"
|
|
|
|
description = 'dataforge-plots-viewer'
|
|
|
|
application{
|
|
mainClassName("hep.dataforge.plots.viewer.ViewerApp")
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
javaParameters = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api project(':dataforge-plots:plots-jfc')
|
|
api project(':dataforge-gui')
|
|
}
|