com.devalexb.octopus.manager
Owner: Alex Bogatikov
Project resource management in multi environment builds.
https://github.com/developer-octopus/gradle-octopus-plugin/
Sources: https://github.com/developer-octopus/gradle-octopus-plugin/
Version 0.0.1-3-alpha
Created 03 December 2016.
Project resource management in multi environment builds.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.devalexb.octopus.manager") version "0.0.1-3-alpha"
}
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("com.devalexb.octopus.manager:com.devalexb.octopus.manager.gradle.plugin:0.0.1-3-alpha") }
It can then be applied in the precompiled script plugin:plugins { id("com.devalexb.octopus.manager") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.devalexb.octopus.manager:com.devalexb.octopus.manager.gradle.plugin:0.0.1-3-alpha") } } apply(plugin = "com.devalexb.octopus.manager")
- Applying plugins to all subprojects .