ai.digital.integration.server.release.ReleaseIntegrationServerExtension.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.release
import ai.digital.integration.server.common.domain.Server
import ai.digital.integration.server.common.extension.CommonIntegrationServerExtension
import groovy.lang.Closure
import org.gradle.api.NamedDomainObjectContainer
import org.gradle.api.Project
open class ReleaseIntegrationServerExtension(
project: Project,
val servers: NamedDomainObjectContainer
) : CommonIntegrationServerExtension(project) {
fun servers(closure: Closure>) {
servers.configure(closure)
}
}