Files
pshell-apps/correlation/build.gradle
2025-08-22 10:41:37 +02:00

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)