22 lines
429 B
Groovy
22 lines
429 B
Groovy
|
plugins{
|
||
|
id "application"
|
||
|
id "com.github.johnrengelman.shadow" version "2.0.1"
|
||
|
}
|
||
|
apply plugin: 'kotlin'
|
||
|
|
||
|
if (!hasProperty('mainClass')) {
|
||
|
ext.mainClass = 'hep.dataforge.plots.demo.DemoApp'//"inr.numass.viewer.test.TestApp"
|
||
|
}
|
||
|
|
||
|
mainClassName = mainClass
|
||
|
|
||
|
description = "A demonstration for plots capabilities"
|
||
|
|
||
|
dependencies {
|
||
|
compile project(':dataforge-plots:plots-jfc')
|
||
|
compile project(':dataforge-gui')
|
||
|
}
|
||
|
|
||
|
|
||
|
|