Search Gradle plugins

name.remal.root-project-default-plugins

Plugin that applies many different plugins by default to the root project. See documentation for full applied plugins list.

https://remal.gitlab.io/gradle-plugins/plugins/name.remal.root-project-default-plugins/

Sources: https://gitlab.com/remal/name.remal.gradle-plugins.git

Add this plugin to your build using the plugins DSL:

plugins {
  id("name.remal.root-project-default-plugins") version "1.0.157"
}

See also:

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