Search Gradle plugins

Version 2.0.0 (latest)

2.0.0

Created 15 August 2024.

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 "2.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.liftric.octopusdeploy:octopus-deploy-plugin:2.0.0")
      }
    }
    
    apply(plugin = "com.liftric.octopus-deploy-plugin")
  • Applying plugins to all subprojects .