com.liftric.octopus-deploy-plugin
Owner: Liftric GmbH
Common tasks for Octopus Deploy interaction, like package or build-information uploading
https://github.com/Liftric/octopus-deploy-plugin
Sources: https://github.com/Liftric/octopus-deploy-plugin
Version 1.8.0-alpha-4
Created 03 November 2022.
Common tasks for Octopus Deploy interaction, like package or build-information uploading
Add this plugin to your build using the plugins DSL:
plugins {
id("com.liftric.octopus-deploy-plugin") version "1.8.0-alpha-4"
}
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.liftric.octopus-deploy-plugin:com.liftric.octopus-deploy-plugin.gradle.plugin:1.8.0-alpha-4") }
It can then be applied in the precompiled script plugin:plugins { id("com.liftric.octopus-deploy-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.liftric.octopus-deploy-plugin:com.liftric.octopus-deploy-plugin.gradle.plugin:1.8.0-alpha-4") } } apply(plugin = "com.liftric.octopus-deploy-plugin")
- Applying plugins to all subprojects .