Tagged Questions
Cargo is a thin wrapper that allows you to manipulate Java EE containers in a standard way. It is often used to start containers for integration and functional tests, especially with Maven or Ant.
4
votes
1answer
1k views
Maven2: Cargo plugin hot deployment & Jonas support
I am trying to get the Cargo plugin works on my maven project in order to benefit from war hot-deployment targetting the Jonas server.
The official documentation is not that clear on what is ...
3
votes
2answers
537 views
Maven Cargo does not stop the container
I have a maven project where I want to use the Cargo-Maven-Plugin (1.1.1) to start and stop a tomcat server to run integration tests.
<plugin>
<groupId>org.codehaus.cargo</groupId>
...
3
votes
3answers
689 views
Maven 2 multi module pom
I have recently started migrating my project from ant to maven. I have two module in my application which I am able to build using maven.
Now I have automated tests project which use Web Driver for ...
3
votes
2answers
4k views
How to deploy remotely EAR to JBoss 5.1.0.GA using Cargo maven plugin?
Has someone successfully deployed EAR remotely to JBoss 5.1.0.GA? My pom.xml configuration is as follows:
<plugin>
<groupId>org.codehaus.cargo</groupId>
...
3
votes
1answer
1k views
Problem using Maven with Cargo plug-in
When I'm using Maven with the cargo plug-ing to handle hot deployments to tomcat, maven fails on the clean task if the .war artifact doesn't currently exist. So if I run mvn clean, then mvn clean ...
3
votes
1answer
2k views
How to deploy a WAR onto an existing Tomcat 6 instance using Cargo?
I installed Tomcat using the Windows installer ages ago and it runs fine as a service on my development laptop. Now I'm mavenising my project and would like to use Cargo (or something similar) to ...
2
votes
2answers
82 views
JEE war deployment or redeployment - automatically choose the appropriate action
In development, it's fairly common to want to deploy your war to your local app server, irrespective of whether it's already deployed (i.e. just deploy over the old version, if it's there).
However ...
2
votes
0answers
93 views
Deploy current poject AND another WAR using Cargo
I'm using Cargo for Integration tests with Maven. I found examples of deploying another war from .m2 repo in pre-integration here . Can somebody guide me on how to deploy current project and another ...
2
votes
1answer
603 views
How do I override a Maven Plugin's log4j Configuration?
I'm using the Cargo Maven plugin to deploy a WAR to a remote server, and I'm having problems. I'll probably create a second question for that problem, but this one is about overriding a Maven plugin's ...
2
votes
1answer
288 views
Setup resources for GlassFish2.x Cargo deployment
I'm trying to get integration testing working for a GlassFish 2.x project, using Maven2 and Cargo. I finally have Cargo attempting to deploy my EAR but it fails to start because the data source is not ...
2
votes
1answer
614 views
How can I use use JSP 2.1 with Cargo maven plugin and Jetty6x embedded?
I have a webapp that is using JSP 2.1, Servlets 2.5 and JSTL 1.2 on Java 6. I do my testing using the maven-jetty-plugin 6.1.1rc1 without any problems. From this link: ...
2
votes
2answers
2k views
Using maven and embedded jetty: ClassCastException
I have a web-application written in java.
I would like to run integration tests on a embedded jetty server.
For that purpose I have a maven project (just for running integration tests).
For ...
2
votes
1answer
4k views
Where can I find a complete Maven Cargo plugin example for EJB tests?
For tests of some small JBoss enterprise apps I would like to use JUnit, and the Maven Cargo plugin. (I know that there is also JSFUnit but first I would like to take a closer look at Cargo.)
Is ...
2
votes
2answers
633 views
Cargo not working over proxy integrated with maven 2
I have integrated Cargo plugin in my maven 2 project POM.xml.
During hot deployment I am unable to connect to my Tomcat container that is available across a proxy. My maven settings.xml already ...
1
vote
0answers
26 views
Deploying on remote JBoss 6.x with Cargo
I'm trying to setup an Ant Target to perform a remote deploy on a JBoss 6.x server, using Cargo.
Here is my target description:
<target name="deploy" depends="install-cargo,make-war">
...
1
vote
1answer
74 views
Cargo-Maven2-Plugin not finding Tomcat /lib directory
I'm trying to setup Maven to start Tomcat (using Cargo) and deploy my project in preparation for integration tests.
Here is my POM:
< ... >
<plugin>
...
1
vote
1answer
46 views
TestNG unit test at maven install, install ->deploy to jetty ->start jetty ->run test -> stop server
I have a maven project.
I want to test (spring) controller class and also wrote a test class.To successfully run this test class,I want the web app to be deployed in the (jetty )server.
How I can ...
1
vote
1answer
99 views
Maven: How do I configure tests to run in integration-test phase?
I'm using Maven 3.0.3. I want to run some Junit tests in my test phase and others in my integration-test phase. Problem is nothing is running during the integration-test phase. I run the command
...
1
vote
2answers
142 views
Error while deploying through cargo: javax.security.sasl.SaslException: No more authentication mechanisms to try
I've been trying to deploy to a local JBoss 7 AS installation via the cargo maven plugin with no success. I've even tried enabling security for the JBoss's management interface to no avail.
Here is ...
1
vote
1answer
106 views
How to cleanly stop m2e cargo:run from Eclipse?
Using the run mojo from the cargo-maven2-plugin I would like to know of a better way to shut down the container.
The console output says Ctrl+C to stop, but that seems to do nothing.
If I terminate, ...
1
vote
1answer
224 views
glassfish 3 + maven + remote deploy
I couldn't find any clear answer about how to deploy simple maven based project to remote glassfish server via maven like ;
mvn package xxx:deploy
I think only cargo plugin supports glassfish 3. ...
1
vote
2answers
90 views
Hudson Job Completion with Cargo
I am using cargo maven plugin to start weblogic server (mvn cargo:run). Everything is working fine but hudson job is not getting completed. Is there any way by which hudson job can be completed after ...
1
vote
1answer
411 views
Remote Tomcat deployment via Cargo Ant Task
I was trying to deploy a WAR file using the Cargo Ant task version 1.0.6 to a remote Tomcat server. As far as I can see from the documentation I have to set the container type to remote and the ...
1
vote
0answers
424 views
Problem trying to deploy to a remote container using Maven2, Cargo and Jetty 6
I am trying to deploy a war module (part of a multi module project) to a remote Jetty 6.0.1 container using Cargo 1.0.5, when I do
mvn org.codehaus.cargo:cargo-maven2-plugin:1.0.5:deploy (mvn ...
1
vote
3answers
1k views
Maven and Cargo: start Jetty-Container with war-File
I just started a new Maven project that is intended to start a Jetty containing a war-File from a depended project. The cargo-plugin should be the right tool for this.
Unfortunately it doesn't work ...
1
vote
2answers
908 views
Is it possible to supply Tomcat6's context.xml file via the Maven Cargo plugin?
I'd like to keep Tomcat's context.xml file out of my WAR file's META-INF directory if possible. Can this be done with Maven's cargo plugin? I can't seem to find the correct configuration.
1
vote
1answer
580 views
Start a web container then deploy a war with cargo maven2 plugin
I tried to use cargo-maven2-plugin to automate my WAR module deployment for testing.
I wonder how can I start the tomcat server (pre-installed in my machine) and deploy my war to the started server ...
1
vote
1answer
2k views
How use cargo-maven2-plugin deploy to jboss as5?
I trying cargo-maven2-plugin, but I don't deploy in jboss5x I pom.xml is
<plugin>
<groupId>org.codehaus.cargo</groupId>
...
1
vote
1answer
756 views
How to deploy a specific child project with cargo:start using maven
I have a developed application and I am just trying to make the build process easy. The POM file for parent looks like this:
<parent>
<groupId>com.shc.obu.ca</groupId>
...
1
vote
2answers
704 views
How to start/stop/redeploy maven web app using cargo start inside Eclipse
I have Maven2 war project built, I'm using the cargo start plugin, and it works great for deploying the web app. To run the maven command, I use a .bat file in my workspace, and I have en external ...
1
vote
2answers
695 views
How to control a tomcat container during the runtime with maven?
I have a Maven project which executes integration tests for another web-application. This application is deployed and started within a tomcat container.
The configuration for this is done in the ...
0
votes
1answer
17 views
Cargo undeploys the war when integration test runs?
i have separate profile for integration test, and when running this profile i notice that Cargo starts and deploys the application, then selenium server starts, and when integration test stars cargo ...
0
votes
1answer
56 views
Adding last-child or last-of-type to nav menu
Normally CSS is my thing, but I'm somehow dumbfounded why this isn't working for me. I'm building a site through Cargo for CMS purposes (client dislikes WP!) and you can see it here: ...
0
votes
1answer
93 views
How to deploy to local tomcat with gradle-cargo-plugin?
I want to deploy multiple different war dependencies to a local installation of tomcat in the build directory.
I found the
bmuschko:gradle-cargo-plugin:0.3
but have no idea to deploy the war file.
...
0
votes
2answers
66 views
Unpack tomcat.tar.gz and start tomcat within cargo container
i want to do some black box tests on a web application.
Therefore i want to do the following:
1) unzip the tomcat to build directory
2) unzip the web app to build directory
3) start tomcat ...
0
votes
1answer
82 views
How do I deploy my Maven WAR project to a Cargo-Tomcat container?
I'm using Maven 3.0.3 with the Maven-Cargo plugin 1.1.3 with Tomcat 6.0.33. How do I deploy my existing WAR project to an installed Tomcat container using Maven-Cargo? I have this configuration ...
...
0
votes
0answers
31 views
Way to auto-launch Maven-cargo without explicitly specifying “cargo:start”?
I'm using Maven 3.0.3 with the latest version of the Maven Cargo plugin. I'm using an existing Tomcat 6 container with Cargo and have tied the container start in the pre-integration-test phase. So ...
0
votes
1answer
61 views
Different cargo.run profiles in maven2 (Java / Hippo)
I'm trying to setup our build/deploy process for a project that uses Hippo, a Java / JCR CMS. The deployment strategy we want to achieve is:
Local development: use the default 'in memory' database ...
0
votes
0answers
82 views
Maven cargo plugin - redeploy specific deployable in standalone container?
I'm currently working on a project that consists of several services written in Java that are accessed by a Ruby/Rails front-end. In an attempt to simplify local development, I've created a separate ...
0
votes
1answer
120 views
Image Swap using jQuery
I hope somebody could help me out with this.
I'm working on a portfolio website that currently looks like this:
http://cargocollective.com/shap
As you can see, I have a png image over 15 animated ...
0
votes
1answer
138 views
How to force the Cargo Maven Plugin to produce Errors rather then Infos or Warnings when deploy fails?
I am using the cargo maven plugin to deploy my application into a glassfish container for integration test:
<plugin>
<groupId>org.codehaus.cargo</groupId>
...
0
votes
2answers
224 views
How do I configure Maven Cargo to use an embedded Tomcat server?
I'm using Maven 3.0.3. Is there a way I can use the Maven Cargo plugin to spin up an embedded Tomcat server? Right now, it seems I have to install it myself first. I get this error when I try and ...
0
votes
1answer
113 views
Deploy on a remote server war + conf (cargo?)
I'm searching for something that can deploy on an application server (tomcat) a war and its relative context.xml file and/or a properties file for the application.
The problem is that the properties ...
0
votes
1answer
191 views
Simple WAR file merging - overwriting first WAR file with second WAR file
I want to simply merge two WAR files, overwriting corresponding files in first WAR with files from second WAR i.e. output WAR will contain web.xml from second WAR if one was present there. I am trying ...
0
votes
2answers
200 views
Maven-Cargo integration test crashing due to spring version uncompatibility
I am developing an integration test involving a couple of webapps, but when compiling using maven, a linkageError is given due to version inconsistency between spring and spring context, even though I ...
0
votes
1answer
299 views
Tomcat failure to deploy from Cargo plugin via Hudson, NoClassDefFoundError
I am having some issues with a Maven profile setup to run HtmlUnit test cases. The
profile uses the Maven Cargo plugin to deploy the application and then subsequently run interface tests with ...
0
votes
1answer
141 views
Cargo maven plugin problem on hudson release
i'm trying to setup hudson job to release out project. I have one problem with cargo maven plugin. On release:prepare and release:perform it runs twice our integration tests. To run integration tests ...
0
votes
0answers
238 views
How to specify core.cargo.version to use in cargo-maven2-plugin
I am trying to upgrade my existing maven application to use tomcat 7.10 and above.
On 7.8 I use the cargo-maven2-plugin to startup the tomcat container and deploy the webapp, this works fine.
On ...
0
votes
1answer
188 views
Problem with merging WARs using uberwar (cargo-maven2-plugin)
I've just started using cargo-maven2-plugin to merge WAR artifacts during build process and I encountered problem with uberwar mojo.
Merging works fine but resulting web.xml file contains extra ...
0
votes
1answer
53 views
Cargo: finding out the state of an already-installed container
I'm trying to use Cargo to manage containers from a webapp on the same machine as the containers. So far, I've been able to do most things, but I'm stuck when it comes to finding out the state of ...