ru.cian.rustore-publish-gradle-plugin
Owner: Cian Tech
A Gradle Plugin for publishing release built to Rustore
https://github.com/cianru/rustore-publish-gradle-plugin
Sources: https://github.com/cianru/rustore-publish-gradle-plugin.git
Version 0.5.0-alpha02
Created 12 September 2024.
A Gradle Plugin for publishing release built to Rustore
Add this plugin to your build using the plugins DSL:
plugins {
id("ru.cian.rustore-publish-gradle-plugin") version "0.5.0-alpha02"
}
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("ru.cian.rustore-publish-gradle-plugin:ru.cian.rustore-publish-gradle-plugin.gradle.plugin:0.5.0-alpha02") }
It can then be applied in the precompiled script plugin:plugins { id("ru.cian.rustore-publish-gradle-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ru.cian.rustore-publish-gradle-plugin:ru.cian.rustore-publish-gradle-plugin.gradle.plugin:0.5.0-alpha02") } } apply(plugin = "ru.cian.rustore-publish-gradle-plugin")
- Applying plugins to all subprojects .