Thanks for your help. I did some O'Reilly reading. I could not find that
I could skip the verify, but as Robert mentioned I can control the threshold
of the plugins.
I now have:
workspace/
pom.xml
murmur-events/
pom.xml
murmur-utils/
pom.xml
reed-solomon/
pom.xml
murmur/
pom.xml
genesis/
pom.xml
where the reed-solomon overrides the plugin values for the analysis tools.
It is fairly complicated to setup each new project, since I need to combine
maven3, git, eclipse, and a Jenkins project for each one. I had to generate
the top and put it into the Jenkins repository, which is separate than the
.m2 repository, but it works. I may switch to a public repository at some
point. Anyways, once I get each project setup, it is gravy.
Thanks,
Rob
> From: Barrie Treloar [mailto:[email protected]]
>
> On Sat, Oct 6, 2012 at 8:14 PM, Rob Withers <[email protected]> wrote:
> > As the subject asks: can I run mvn install with a no verify flag to
> > skip the verify phase?
>
> Rob, please read the maven books.
> Your questions are showing you need to grasp the basics first.
> You will save yourself lots of pain.
> From: Robert Scholte [mailto:[email protected]]
>
> Can you reach the age of 100 without ever being 99?
>
> You must find your solution in the plugin bound to the verify-phase.
> A strategy could be to make add a profile with the ITs.
> <profile>
> <id>run-its</id>
> </profile>
>
> If you want it to be executed by default, add this kind of activation:
> <activation>
> <property>
> <name>skipTests</name>
> <value>!true</value>
> </property>
> </activation>
> So mvn install -DskipTests=true will indeed skip the tests
>
> Otherwise activate it by id (that is: -Prun-its)
>
> Robert
>
> On Sat, 06 Oct 2012 12:44:36 +0200 Rob Withers <[email protected]>
> wrote:
>
> > As the subject asks: can I run mvn install with a no verify flag to
> > skip the verify phase?
> >
> >
> > Thanks,
> >
> > Rob
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]