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.2

Created 10 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.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.taruts:workspace-gradle-plugin:1.0.2")
  }
}

apply(plugin = "org.taruts.workspace")

Using the plugins DSL:

plugins {
  id "org.taruts.workspace" version "1.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.taruts:workspace-gradle-plugin:1.0.2"
  }
}

apply plugin: "org.taruts.workspace"

Learn how to apply plugins to subprojects