We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8947fe commit e495d37Copy full SHA for e495d37
src/main/groovy/io/nextflow/gradle/PluginManifest.groovy
@@ -30,8 +30,8 @@ class PluginManifest {
30
if (config.description) {
31
jar.manifest.attributes('Plugin-Description': config.description)
32
}
33
- if (!config.requirePlugins.isEmpty()) {
34
- jar.manifest.attributes('Plugin-Dependencies': config.requirePlugins)
+ if (config.requirePlugins) {
+ jar.manifest.attributes('Plugin-Dependencies': config.requirePlugins.join(','))
35
36
37
0 commit comments