Search Gradle plugins

Version 0.2.0

0.2.0

Created 25 September 2015.

Manage multi-project workspaces

Add this plugin to your build using the plugins DSL:

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

See also:

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