All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.octopusden.octopus.automation.teamcity.TeamcityCreateBuildChainCommand.kt Maven / Gradle / Ivy

There is a newer version: 1.0.16
Show newest version
package org.octopusden.octopus.automation.teamcity

import com.github.ajalt.clikt.core.CliktCommand
import com.github.ajalt.clikt.core.requireObject
import org.octopusden.octopus.infrastructure.teamcity.client.TeamcityClient
import org.slf4j.Logger

class TeamcityCreateBuildChainCommand : CliktCommand(name = COMMAND) {
    private val context by requireObject>()

    override fun run() {
        val log = context[TeamcityCommand.LOG] as Logger
        val client = context[TeamcityCommand.CLIENT] as TeamcityClient
        log.info("Create build chain")
        TODO("Not yet implemented")
    }

    companion object {
        const val COMMAND = "create-build-chain"
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy