Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("name.remal.dependencies-filter") version "1.0.207"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("name.remal:gradle-plugins:1.0.207")
      }
    }
    
    apply(plugin = "name.remal.dependencies-filter")
  • Applying plugins to all subprojects .