Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("name.remal.randomize-test-classes") version "1.5.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("name.remal:gradle-plugins:1.5.0")
      }
    }
    
    apply(plugin = "name.remal.randomize-test-classes")
  • Applying plugins to all subprojects .