gradle-cargo-plugin
gradle-cargo-plugin copied to clipboard
Gradle plugin that provides deployment capabilities to local and remote containers via Cargo
Related to https://github.com/bmuschko/gradle-cargo-plugin/issues/172 When running `cargoStartLocal` there no option to modify any files in between the install and configuration of the local container and the running of it. If the...
I'm facing up how to deal with my `undeployDev`-like tasks. This is my configuration: ``` remoteContainers.each { config -> task "undeployDev${config.name.capitalize()}"(type: com.bmuschko.gradle.cargo.tasks.remote.CargoUndeployRemote) { description = "Deploys WAR to remote Web...
Would it be possible to deploy locally and connect to debugger in one action? I have read the differences between Start/Run but no one seems to be sufficient to append...
We have some native libraries which need to be in the LD_LIBRARY_PATH (Unix) / PATH (Windows) environment variable. Unfortunately it is not sufficient to set -Djava.library.path since the native library...
Certain web servers such as Wildfly and WebLogic allows for deployment of JARs as a shared library. The deployment pattern should be the same as a WAR file, so I...
I expect it's a problem with Cargo itself rather than this plugin. Manually copying the file to wildfly-10.0.0.Final/wildfly-10.0.0.Final/standalone/configuration/ works fine, however adding the following to the build script causes the...
Cargo maven2 plugin has this option: pingURL "URL on which to ping the deployed or undeployed application (to check if deployment or undeployment is successful), that should return an HTTP...
Cargo maven2 plugin has this option: xmlReplacements "Values to use for various XML replacements." Source: http://cargo.codehaus.org/Maven2+Plugin+Reference+Guide Nice to have feature, e.g. for JBoss 7, which requires disabling deployment of JBoss...
Hi, We use Jenkins to do deferred deployment of our applications on our production servers. For this we use Gradle with the Cargo plugin (2.8.0) It works very well but...
Integration tests are failing after Gradle upgrade to 6.8.3. buildscript { repositories { } dependencies { classpath("com.bmuschko:gradle-cargo-plugin:2.6.1") } } * What went wrong: Execution failed for task ':project-name-it:cargoStartLocal'. > org.codehaus.cargo.container.ContainerException:...