Owner:
Alex Tsyganov
Greetings from here!
Sources: https://github.com/AlexTsyganov
Version 1.0.7.3
Created 11 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.3"
}
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.3") }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.3") } } apply(plugin = "org.brandwidth.plugins") - Applying plugins to all subprojects .