createMainProcessOnlyDeployment

Deprecated

This API is experimental and may change in the future without providing backward compatibility.

Shorthand to deploy all service hosts in the main process. Equivalent to:

globalDeployments {
    create(RuntimeDeploymentIdentifier.globalRuntime) {
        deployServiceHosts(all()).inMainProcess()
    }
}
multipleInstanceDeployments {
    create(RuntimeDeploymentIdentifier.defaultRuntime) {
        iviInstances = listOf(IviInstanceIdentifier.default)
        deployServiceHosts(all()).inMainProcess()
    }
}

__Note:__ This may only be used for integration test projects.