Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.zegreatrob.testmints.logs.mint-logs") version "10.2.17"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.zegreatrob.testmints:mint-logs-plugin:10.2.17")
      }
    }
    
    apply(plugin = "com.zegreatrob.testmints.logs.mint-logs")
  • Applying plugins to all subprojects .