Skip to content
This repository was archived by the owner on Sep 1, 2025. It is now read-only.

Commit 28daf80

Browse files
robsymetom-seqera
andauthored
Update plugins/build.gradle
Co-authored-by: Tom Sellman <[email protected]>
1 parent 9553876 commit 28daf80

File tree

1 file changed

+0
-30
lines changed

1 file changed

+0
-30
lines changed

plugins/build.gradle

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -215,33 +215,3 @@ task publishIndex( type: io.nextflow.gradle.tasks.GithubRepositoryPublisher ) {
215215
githubToken = github_access_token
216216
}
217217

218-
/*
219-
* Task to install all plugins to the Nextflow plugins directory
220-
*/
221-
task installPlugins() {
222-
description = 'Installs all plugins to the Nextflow plugins directory'
223-
group = 'Plugin Installation'
224-
225-
dependsOn subprojects.installPlugin
226-
}
227-
228-
/*
229-
* Task to install a specific plugin by name
230-
* Usage: ./gradlew installPlugin -Pplugin=nf-hello
231-
*/
232-
task installSpecificPlugin {
233-
description = 'Installs a specific plugin (specify with -Pplugin=plugin-name)'
234-
group = 'Plugin Installation'
235-
236-
doFirst {
237-
if (!project.hasProperty('plugin')) {
238-
throw new GradleException("Please specify a plugin name using -Pplugin=plugin-name")
239-
}
240-
def pluginName = project.property('plugin')
241-
def pluginProject = project.findProject(":plugins:${pluginName}")
242-
if (!pluginProject) {
243-
throw new GradleException("Plugin '${pluginName}' not found")
244-
}
245-
dependsOn pluginProject.installPlugin
246-
}
247-
}

0 commit comments

Comments
 (0)