Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.mythicdrops.gradle.project") version "9.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.mythicdrops:mythicdrops-gradle-plugin:9.0.0")
      }
    }
    
    apply(plugin = "dev.mythicdrops.gradle.project")
  • Applying plugins to all subprojects .