Search Gradle plugins

Version 0.0.8

0.0.8

Created 23 May 2024.

Implements sandbox tasks that guarantee no reliance on the local system

Add this plugin to your build using the plugins DSL:

plugins {
  id("co.elastic.sandbox") version "0.0.8"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("co.elastic.gradle:sandbox:0.0.8")
      }
    }
    
    apply(plugin = "co.elastic.sandbox")
  • Applying plugins to all subprojects .