maven-cucumber-reporting Build failure

2016-08-29 Thread Kashif BHATTI
Hello everyone, I am running a Selenium JAVA test with maven and when I run the project as a Maven test it runs all the tests practically just fine. However there are two major issues that I need help with 1. at the end of every run I get this..no clue why: Tests run: 0, Failures: 0, Errors: 0,

Re: [ANN] Apache Maven WAR Plugin Version 3.0.0 Released

2016-08-29 Thread Karl Heinz Marbaise
Hi, do you have an example project which shows the behaviour ? May be you create it on github ? Or create a JIRA and attach the example project to it? Kind regards Karl Heinz Marbaise On 29/08/16 15:28, Maxim Solodovnik wrote: After switching to this version I got weird error on

Re: [ANN] Apache Maven WAR Plugin Version 3.0.0 Released

2016-08-29 Thread Maxim Solodovnik
After switching to this version I got weird error on multi-module project: full build is OK in case I'm building only some sub-projects using "-pl" option I got build command is "mvn install -P quick,allModules,mysql -pl openmeetings-web" (I'm not using install:install) Failed to execute goal

Re: Does Failsafe Require Jetty?

2016-08-29 Thread Stephen Connolly
failsafe itself does not manage the lifecycle of your container. Maven has a lifecycle with some phases: pre-integration-test: to be used to start any services required by your integration tests integration-test: to be used to run the integration tests post-integration-test: to be used to stop

RE: Does Failsafe Require Jetty?

2016-08-29 Thread Martin Gainty
> From: stephen.alan.conno...@gmail.com > Date: Mon, 29 Aug 2016 13:33:34 +0100 > Subject: Re: Does Failsafe Require Jetty? > To: users@maven.apache.org > > Failsafe does not require jetty. If your integration tests require that > your application be deployed to a servlet container - such as

Re: Does Failsafe Require Jetty?

2016-08-29 Thread Stephen Connolly
Failsafe does not require jetty. If your integration tests require that your application be deployed to a servlet container - such as jetty - and you do not want to have your tests manage the lifecycle of that container, then you will require failsafe so that you can have maven manage starting up