22 lines
443 B
Groovy
22 lines
443 B
Groovy
description = 'psss-panel'
|
|
ext.plugin = 'PSSS'
|
|
ext.mainClass = hasProperty('mainClass') ? mainClass : 'ch.psi.pshell.workbench.App'
|
|
ext.title = 'PSSS Panel'
|
|
ext.desc = 'PSSS panel'
|
|
ext.readonly = false
|
|
ext.deploy_type= 'pkg'
|
|
|
|
dependencies {
|
|
implementation 'ch.psi:pshell-workbench:' + version
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
java {
|
|
srcDirs = ['src/main/pkg/plugins']
|
|
}
|
|
}
|
|
}
|
|
|
|
createDefaultTasks(project)
|