This repository was archived by the owner on Sep 1, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +0
-30
lines changed
Expand file tree Collapse file tree 1 file changed +0
-30
lines changed Original file line number Diff line number Diff 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- }
You can’t perform that action at this time.
0 commit comments