ai.digital.integration.server.common.domain.Cluster.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 ai.digital.integration.server.common.constant.ClusterProfileName
import org.gradle.api.model.ObjectFactory
import org.gradle.kotlin.dsl.property
@Suppress("UnstableApiUsage")
open class Cluster(objects: ObjectFactory) {
var debugSuspend: Boolean = objects.property().value(false).get()
var enable: Boolean = objects.property().value(false).get()
var enableDebug: Boolean = objects.property().value(false).get()
var profile: String = objects.property().value(ClusterProfileName.DOCKER_COMPOSE.profileName).get()
var publicPort: Int = objects.property().value(8080).get()
}