![JAR search and dependency download from the Maven repository](/logo.png)
ai.digital.integration.server.domain.Server.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of integratoin-server-gradle-plugin Show documentation
Show all versions of integratoin-server-gradle-plugin Show documentation
The easy way to get custom setup for Deploy up and running
The newest version!
package ai.digital.integration.server.domain
import ai.digital.integration.server.util.HTTPUtil
class Server {
String contextRoot = "/"
Boolean debugSuspend = false
Integer debugPort
Integer httpPort = HTTPUtil.findFreePort()
String[] jvmArgs = ["-Xmx1024m", "-Duser.timezone=UTC"]
Map logLevels = new HashMap<>()
String name
Map> overlays = new HashMap<>()
Integer pingRetrySleepTime = 10
Integer pingTotalTries = 60
String provisionScript
Integer provisionSocketTimeout = 60000
Boolean removeStdoutConfig = false
String runtimeDirectory
String version
Map> yamlPatches = new HashMap<>()
Server(final String name) {
this.name = name
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy