Search Gradle plugins

Version 3.0.0-stable

Created 13 August 2019.

A wrapper for 'base-style-config' configurations

Add this plugin to your build using the plugins DSL:

plugins {
  id("all.shared.gradle.base-style-config-wrapper") version "3.0.0-stable"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("all.shared.gradle.base-style-config-wrapper:all.shared.gradle.base-style-config-wrapper.gradle.plugin:3.0.0-stable")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("all.shared.gradle.base-style-config-wrapper")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("all.shared.gradle.base-style-config-wrapper:all.shared.gradle.base-style-config-wrapper.gradle.plugin:3.0.0-stable")
      }
    }
    
    apply(plugin = "all.shared.gradle.base-style-config-wrapper")
  • Applying plugins to all subprojects .