.bamboo.specs.extension.bamboo-specs-extension.1.2.6.source-code.DeploymentExtension.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bamboo-specs-extension Show documentation
Show all versions of bamboo-specs-extension Show documentation
A Kotlin DSL for Bamboo Specs
package com.atlassian.bamboo.specs.extension
import com.atlassian.bamboo.specs.api.builders.deployment.Deployment
import com.atlassian.bamboo.specs.api.builders.deployment.Environment
fun Deployment.environment(name: String, description: String? = null, init: SpecsDsl = {}) {
val environment = Environment(name)
if (description != null)
environment.description(description)
environment.init()
this.environments(environment)
}