bmuschko/gradle-cargo-plugin

cargoDeployRemote context root

sandeep-khanna opened this issue · 1 comments

Trying to separate out current Eclipse and embedded Tomcat deployment model to deploying and debugging remotely...

Our web application is currently deployed to the root '/' context. Does cargo or the gradle-cargo-plugin support remote deployment to the root context?

Here is a snippet from our Gradle build file:

cargo {
    containerId = 'tomcat8x'
    port = 80

	deployable {
        context = 'ROOT'
    }

    remote {
        hostname = 'remote-host'
        username = 'admin'
        password = 'password'
    }
}

This actually works with a standalone or Cargo daemon created Tomcat server instance. It does not work with an Eclipse embedded instance.