Files
pshell-apps/correlation/build.gradle

28 lines
587 B
Groovy

description = 'correlation'
ext.plugin = 'Correlation'
ext.mainClass = hasProperty('mainClass') ? mainClass : 'ch.psi.pshell.workbench.App'
ext.title = 'Correlation'
ext.desc = 'Correlation'
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
tasks.jar {
include 'CorrelationOptions.class'
}
sourceSets {
main {
java {
srcDirs = ['src/main/pkg/plugins']
}
}
}
createDefaultTasks(project)