Search Gradle plugins

Version 1.0.7.1

Created 04 July 2016.

Updated uplaod headers. User guide: apply plugin: 'org.brandwidth.plugins' brandShareUploader { login Brandwidth_share_login password Brandwidth_share_password buildPrefixName "Share" debug false isPermanent false isPublic true }

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.brandwidth.plugins") version "1.0.7.1"
}

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("org.brandwidth.plugins:org.brandwidth.plugins.gradle.plugin:1.0.7.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.brandwidth.plugins")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.brandwidth.plugins:org.brandwidth.plugins.gradle.plugin:1.0.7.1")
      }
    }
    
    apply(plugin = "org.brandwidth.plugins")
  • Applying plugins to all subprojects .