ai.digital.integration.server.common.domain.DevOpsAsCode.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of integration-server-gradle-plugin Show documentation
Show all versions of integration-server-gradle-plugin Show documentation
The easy way to get custom setup for Deploy up and running
package ai.digital.integration.server.common.domain
import java.io.File
open class DevOpsAsCode(val name: String) {
var devOpAsCodeScript: File? = null
var scmAuthor: String? = null
var scmCommit: String? = null
var scmDate: String? = null
var scmFile: String? = null
var scmMessage: String? = null
var scmRemote: String? = null
var scmType: String? = null
}