Search Gradle plugins

Version 2.3.1

2.3.1

Created 26 March 2020.

Apply the core quill plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.myire.quill.core") version "2.3.1"
}

See also:

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