23 lines
456 B
Groovy
23 lines
456 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
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
java {
|
|
srcDirs = ['src/main/pkg/plugins']
|
|
}
|
|
}
|
|
}
|
|
|
|
createDefaultTasks(project)
|
|
|