Search Gradle plugins

Version 0.13.3

0.13.3

Created 26 August 2017.

Some common Gradle settings.

Add this plugin to your build using the plugins DSL:

plugins {
  id("name.remal.common-settings") version "0.13.3"
}

See also:

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