org.taruts.workspace
Owner: Pavel Taruts
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)
1.0.3
Created 16 March 2023.
Using the plugins DSL:
plugins {
id("org.taruts.workspace") version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.taruts:workspace-gradle-plugin:1.0.3")
}
}
apply(plugin = "org.taruts.workspace")
Using the plugins DSL:
plugins {
id "org.taruts.workspace" version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.taruts:workspace-gradle-plugin:1.0.3"
}
}
apply plugin: "org.taruts.workspace"