Skip to content

Commit

Permalink
fix gradle tasks dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Jorge Aguilera <[email protected]>
  • Loading branch information
jagedn committed Jun 14, 2024
1 parent 419b14a commit 2330582
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ abstract class GenerateIdxTask extends DefaultTask{

GenerateIdxTask() {
setGroup('nextflow')
dependsOn(project.tasks.findByName('build'))
}

@TaskAction
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ class NextflowPlugin implements Plugin<Project>{
project.tasks.register('generateIdx', GenerateIdxTask, {
extensionPoints = nextflowPluginExtension.extensionPoints
})
project.tasks.findByName("processResources")?.dependsOn(project.tasks.findByName("generateIdx"))
}
}
}

0 comments on commit 2330582

Please sign in to comment.