File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/groovy/io/nextflow/gradle Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,8 @@ class NextflowPlugin implements Plugin<Project> {
137
137
project. tasks. register(' packagePlugin' , PluginPackageTask )
138
138
project. tasks. packagePlugin. dependsOn << [
139
139
project. tasks. extensionPoints,
140
- project. tasks. classes
140
+ project. tasks. classes,
141
+ project. tasks. buildIndex
141
142
]
142
143
project. tasks. assemble. dependsOn << project. tasks. packagePlugin
143
144
@@ -150,8 +151,7 @@ class NextflowPlugin implements Plugin<Project> {
150
151
// Always create registry release task - it will use fallback configuration if needed
151
152
project. tasks. register(' releasePluginToRegistry' , RegistryReleaseTask )
152
153
project. tasks. releasePluginToRegistry. dependsOn << [
153
- project. tasks. packagePlugin,
154
- project. tasks. buildIndex
154
+ project. tasks. packagePlugin
155
155
]
156
156
157
157
// Always create the main release task
You can’t perform that action at this time.
0 commit comments