Search Gradle plugins

Version 2.1

2.1

Created 10 October 2019.

Apply all quill plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.myire.quill.all") version "2.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.myire:quill:2.1")
      }
    }
    
    apply(plugin = "org.myire.quill.all")
  • Applying plugins to all subprojects .