Search Gradle plugins

Version 0.3.0

0.3.0

Created 12 October 2015.

Manage multi-project workspaces

Add this plugin to your build using the plugins DSL:

plugins {
  id("me.seeber.workspace") version "0.3.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.me.seeber:gradle-workspace-plugin:0.3.0")
      }
    }
    
    apply(plugin = "me.seeber.workspace")
  • Applying plugins to all subprojects .