configure unit integration tests order

2012-05-17 Thread alexbarter
Hi all. I need seems strange case: 1) pax exam starting apache servisemix (or fuse esb) 2) soap ui maven plugin run tests 3) shutdown servicemix i maked this individually, and now i break my brain how to integrate this stuff. is there any way to order execution of tests? this is my current

Re: configure unit integration tests order

2012-05-17 Thread Stephen Connolly
have a look at the failsafe maven plugin... (I know you will not be using it)... but it explains how to do the type of thing you want to do. On 17 May 2012 12:35, alexbarter aprokof...@citc.ru wrote: Hi all. I need seems strange case: 1) pax exam starting apache servisemix (or fuse esb) 2)

Re: Maven Log binding for SLF4J (jcabi-maven-slf4j)

2012-05-17 Thread Yegor Bugayenko
Hi Oliver, I just posted a link to that issue, thanks for the hint. I think it will be helpful (I'm using this binding in a number of Maven plugins for at least 8 months). — Yegor On Tue, May 15, 2012 at 1:47 PM, Oliver B. Fischer mails...@swe-blog.netwrote: Hi Yegor, nice to see such a

Maven Assembly plugin -Multi module project- source and javadoc not getting added to zip file

2012-05-17 Thread Pankaj
I've multi module project and using maven's assembly plugin to zip the project's artifact. Proj +Module A pom.xml +Module B pom.xml pom.xml When i build main module, it will produce following things Proj +Module A target\A.jar

RE: Maven Assembly plugin -Multi module project- source and javadoc not getting added to zip file

2012-05-17 Thread Matt Walsh
Pankaj, The problem is in your includes. javadoc and source are classifiers, not types. Try groupA:A:jar:sources groupB:A:jar:javadoc and so on. Matt -Original Message- From: Pankaj [mailto:pankaji...@rediffmail.com] Sent: Thursday, May 17, 2012 12:11 PM To:

RE: Maven Assembly plugin -Multi module project- source and javadoc not getting added to zip file

2012-05-17 Thread Pankaj
Thanks for your reply. I'm still getting the same problem. Getting below warning [WARNING] The following patterns were never triggered in this artifact inclusion filter: o 'groupA:A:jar:javadoc' o 'groupA:A:jar:source' where as artifact which has all classes is getting added. Thanks Pankaj

RE: Maven Assembly plugin -Multi module project- source and javadoc not getting added to zip file

2012-05-17 Thread Matt Walsh
Yeah. You need to read the documentation. The format is groupId:artifactId:type:version[:classifier]. Artifact coordinatess may be given in simple groupId:artifactId form, or they may be fully qualified in the form groupId:artifactId:type:version[:classifier]. Additionally, wildcards can be used,