Search Gradle plugins

org.taruts.workspace

A plugin for workspace projects. A workspace project groups a number of related projects, each stored in a separate Git repository. This plugin automates cloning of projects included in a workspace for developers who start working with it. The DSL of the plugin allows to specify the list of projects in the workspace and to which subdirectories they are to be cloned.

https://gitlab.com/pavel-taruts/gradle-plugins/workspace-gradle-plugin

Sources: https://gitlab.com/pavel-taruts/gradle-plugins/workspace-gradle-plugin.git

Version 1.0.3 (latest)

Created 16 March 2023.

A plugin for workspace projects. A workspace project groups a number of related projects, each stored in a separate Git repository. This plugin automates cloning of projects included in a workspace for developers who start working with it. The DSL of the plugin allows to specify the list of projects in the workspace and to which subdirectories they are to be cloned.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.taruts.workspace") version "1.0.3"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("org.taruts.workspace:org.taruts.workspace.gradle.plugin:1.0.3")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.taruts.workspace")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.taruts.workspace:org.taruts.workspace.gradle.plugin:1.0.3")
      }
    }
    
    apply(plugin = "org.taruts.workspace")
  • Applying plugins to all subprojects .