Files
pshell-apps/correlation/build.gradle
T

30 lines
670 B
Groovy

description = 'correlation'
ext.plugin = 'Correlation'
ext.mainClass = hasProperty('mainClass') ? mainClass : 'ch.psi.pshell.workbench.App'
ext.title = 'Correlation'
ext.desc = 'Correlation'
ext.ex_options = 'CorrelationOptions'
ext.readonly = true
ext.deploy_type= 'pkg'
dependencies {
implementation 'ch.psi:pshell-workbench:' + version
}
//Jar contains only command line options, the panel is compiled dinamically.
//Add to jar just the command-line options.
tasks.jar {
include 'CorrelationOptions.class'
}
sourceSets {
main {
java {
srcDirs = ['src/main/pkg/plugins']
}
}
}
createDefaultTasks(project)