Search Gradle plugins

Version 2.1 (latest)

2.1

Created 08 June 2021.

Raise the practicality of 'gradle-dsl' to a new level.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.meowool.toolkit.gradle-dsl-x") version "2.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.meowool.toolkit:gradle-dsl-x:2.1")
      }
    }
    
    apply(plugin = "com.meowool.toolkit.gradle-dsl-x")
  • Applying plugins to all subprojects .