de.lemona.gradle.bintray
Owner:
LEOMO, Inc.
LEOMO Android and Java conventions plugin
Sources: https://github.com/LemonadeLabInc/gradle-snippets
Version 0.3.13 (latest)
Created 16 July 2020.
A plugin for publishing to Bintray. This plugin depends on de.lemona.gradle and com.jfrog.bintray.
Add this plugin to your build using the plugins DSL:
plugins {
id("de.lemona.gradle.bintray") version "0.3.13"
}
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("de.lemona.gradle.bintray:de.lemona.gradle.bintray.gradle.plugin:0.3.13") }
It can then be applied in the precompiled script plugin:plugins { id("de.lemona.gradle.bintray") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.lemona.gradle.bintray:de.lemona.gradle.bintray.gradle.plugin:0.3.13") } } apply(plugin = "de.lemona.gradle.bintray")
- Applying plugins to all subprojects .